-
-
Save dcsobral/42d4ecdbcaccfc5305bd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>com.richrelevance.root</groupId> | |
<artifactId>project-parent</artifactId> | |
<version>2.0.22</version> | |
<relativePath/> | |
</parent> | |
<groupId>com.richrelevance.common</groupId> | |
<artifactId>common-parent</artifactId> | |
<version>master-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<name>Common :: Parent</name> | |
<modules> | |
<module>util</module> | |
<module>test-util</module> | |
<module>scala-util</module> | |
<module>config-util</module> | |
<module>mail-util</module> | |
<module>math-util</module> | |
<module>metrics</module> | |
<module>app-util</module> | |
<module>jetty</module> | |
<module>hadoop</module> | |
<module>bean-loader</module> | |
<module>db-test-changescripts</module> | |
<module>db-api</module> | |
<module>avro</module> | |
<module>db-scala-tools</module> | |
<module>deprecated-ssh</module> | |
<module>sinks-util</module> | |
<module>kafka-util</module> | |
</modules> | |
<properties> | |
<scala.version>${scala.full.version}</scala.version> | |
<sonar.scoverage.reportPath>${basedir}/target/scoverage.xml</sonar.scoverage.reportPath> | |
<sonar.sources>src/main,pom.xml</sonar.sources> | |
<sonar.tests>src/test</sonar.tests> | |
</properties> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>${root.groupId}</groupId> | |
<artifactId>all-import</artifactId> | |
<version>${root.version}</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>${root.groupId}</groupId> | |
<artifactId>logging-dep</artifactId> | |
<version>${root.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>${root.groupId}</groupId> | |
<artifactId>testing-dep</artifactId> | |
<version>${root.version}</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<repositories> | |
<repository> | |
<id>rr-public</id> | |
<name>RichRelevance Corporate Repository</name> | |
<url>https://repo.richrelevance.com/content/groups/public/</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>rr-public-snapshots</id> | |
<name>RichRelevance Corporate Snapshots Repository</name> | |
<url>https://repo.richrelevance.com/content/groups/public.snapshots/</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>false</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
<updatePolicy>daily</updatePolicy> | |
<checksumPolicy>ignore</checksumPolicy> | |
</snapshots> | |
</repository> | |
<!-- | |
NO OTHER REPOS SHOULD EVER BE CONFIGURED... the above richrelevance ones can proxy to others if needed | |
--> | |
</repositories> | |
<build> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.scoverage</groupId> | |
<artifactId>scoverage-maven-plugin</artifactId> | |
<version>1.0.4</version> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
<plugins/> | |
</build> | |
</project> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment