2015-11-19 23:47:12 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vitro-project</artifactId>
|
2020-03-07 10:31:59 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:12 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2016-06-23 18:54:13 +01:00
|
|
|
<name>Vitro</name>
|
|
|
|
<description>Vitro semantic web application project</description>
|
|
|
|
<url>http://vivoweb.org/</url>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>BSD 3-Clause License</name>
|
|
|
|
<url>https://raw.github.com/vivo-project/Vitro/develop/LICENSE</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2016-06-23 22:22:05 +01:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Graham Triggs</name>
|
|
|
|
<email>gtriggs@duraspace.org</email>
|
|
|
|
<organization>DuraSpace</organization>
|
|
|
|
<organizationUrl>http://vivoweb.org/</organizationUrl>
|
|
|
|
</developer>
|
2016-06-24 16:36:13 +01:00
|
|
|
<developer>
|
|
|
|
<name>Jim Blake</name>
|
|
|
|
<email>jeb228@cornell.edu</email>
|
|
|
|
<organization>Cornell University Library</organization>
|
|
|
|
<organizationUrl>https://github.com/j2blake</organizationUrl>
|
|
|
|
</developer>
|
2016-06-24 14:03:20 +01:00
|
|
|
<developer>
|
|
|
|
<name>John Fereira</name>
|
|
|
|
<email>jaf30@cornell.edu</email>
|
|
|
|
<organization>Cornell University</organization>
|
|
|
|
<organizationUrl>https://github.com/fereira</organizationUrl>
|
|
|
|
</developer>
|
2016-06-23 22:22:05 +01:00
|
|
|
</developers>
|
|
|
|
|
2016-06-23 18:54:13 +01:00
|
|
|
<!--
|
|
|
|
The SCM repository location is used by Continuum to update against
|
|
|
|
when changes have occurred. This spawns a new build cycle and releases
|
|
|
|
snapshots into the snapshot repository below.
|
|
|
|
-->
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:vivo-project/Vitro.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:vivo-project/Vitro.git</developerConnection>
|
|
|
|
<url>git@github.com:vivo-project/Vitro.git</url>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
|
|
|
|
2016-05-23 15:11:16 +01:00
|
|
|
<properties>
|
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
|
|
|
|
<build.timestamp>${maven.build.timestamp}</build.timestamp>
|
2017-09-16 23:20:33 +01:00
|
|
|
<maven-site-plugin.skip>false</maven-site-plugin.skip>
|
|
|
|
<stagingBase>/</stagingBase>
|
2018-05-02 10:49:53 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-05-23 15:11:16 +01:00
|
|
|
</properties>
|
|
|
|
|
2015-11-19 23:47:12 +00:00
|
|
|
<modules>
|
|
|
|
<module>api</module>
|
2015-11-21 16:48:35 +00:00
|
|
|
<module>dependencies</module>
|
2015-11-19 23:47:12 +00:00
|
|
|
<module>webapp</module>
|
|
|
|
<module>home</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<profiles>
|
2016-07-06 06:19:17 +01:00
|
|
|
<profile>
|
|
|
|
<id>installer</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!vitro-installer-dir</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>installer</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>external-installer</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>vitro-installer-dir</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>${vitro-installer-dir}</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-11-19 23:47:12 +00:00
|
|
|
<profile>
|
2016-06-23 22:41:22 +01:00
|
|
|
<id>doclint-java8-disable</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[1.8,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
|
|
|
</properties>
|
2015-11-19 23:47:12 +00:00
|
|
|
</profile>
|
2017-07-12 20:11:59 +01:00
|
|
|
<profile>
|
|
|
|
<id>dependency-check</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>dependency-check</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.owasp</groupId>
|
|
|
|
<artifactId>dependency-check-maven</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipProvidedScope>true</skipProvidedScope>
|
|
|
|
<skipRuntimeScope>true</skipRuntimeScope>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2016-06-23 18:54:13 +01:00
|
|
|
<profile>
|
2018-07-06 14:54:21 -05:00
|
|
|
<id>release-sign-artifacts</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>performRelease</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2016-06-23 18:54:13 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<quiet>true</quiet>
|
2016-06-23 22:41:22 +01:00
|
|
|
<additionalparam>${javadoc.opts}</additionalparam>
|
2016-06-23 18:54:13 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-06-23 21:51:35 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-06-23 18:54:13 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
2017-08-08 22:01:57 +01:00
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
2016-06-23 18:54:13 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2018-10-25 17:51:52 +01:00
|
|
|
<profile>
|
|
|
|
<!-- JDK 8 profile for the Error Prone plugin -->
|
|
|
|
<id>jdk8</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>1.8</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<javac.version>9+181-r4173-1</javac.version>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<fork>true</fork>
|
|
|
|
<compilerArgs combine.children="append">
|
|
|
|
<arg>-J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2020-01-23 18:12:03 +00:00
|
|
|
<profile>
|
|
|
|
<!-- Profile for Error Prone plugin -->
|
|
|
|
<id>errorprone</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[1.8,12)</jdk>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<fork>true</fork>
|
|
|
|
<compilerArgs combine.children="append">
|
|
|
|
<arg>-Xplugin:ErrorProne</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>com.google.errorprone</groupId>
|
|
|
|
<artifactId>error_prone_core</artifactId>
|
|
|
|
<version>2.3.4</version>
|
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2015-11-19 23:47:12 +00:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2016-12-21 14:12:27 +00:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2016-08-26 16:16:00 +01:00
|
|
|
<encoding>UTF-8</encoding>
|
2018-10-25 17:51:52 +01:00
|
|
|
<compilerArgs>
|
|
|
|
<arg>-XDcompilePolicy=simple</arg>
|
|
|
|
</compilerArgs>
|
2015-11-19 23:47:12 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-05-23 15:11:16 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<doCheck>false</doCheck>
|
|
|
|
<doUpdate>false</doUpdate>
|
|
|
|
<shortRevisionLength>7</shortRevisionLength>
|
2017-08-08 22:01:57 +01:00
|
|
|
<revisionOnScmFailure>Detached</revisionOnScmFailure>
|
2016-05-23 15:11:16 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-09-16 23:20:33 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>${maven-site-plugin.skip}</skip>
|
2017-10-11 15:32:41 +01:00
|
|
|
<stagingDirectory>${stagingBase}/vitro/${project.version}</stagingDirectory>
|
2017-09-16 23:20:33 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-07-25 06:43:38 -04:00
|
|
|
|
|
|
|
<!-- Used to validate all code style rules in source code using Checkstyle -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2020-03-04 16:22:02 -05:00
|
|
|
<version>3.1.1</version>
|
2019-07-25 06:43:38 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>verify-style</id>
|
|
|
|
<!-- Bind to verify so it runs after package & unit tests, but before install -->
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>
|
|
|
|
duraspace-checkstyle/checkstyle.xml
|
|
|
|
</configLocation>
|
|
|
|
<suppressionsLocation>
|
|
|
|
vitro-checkstyle/checkstyle-suppressions.xml
|
|
|
|
</suppressionsLocation>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
<logViolationsToConsole>true</logViolationsToConsole>
|
|
|
|
<failOnViolation>true</failOnViolation>
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Override dependencies to use latest version of checkstyle -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2020-03-04 16:22:02 -05:00
|
|
|
<version>8.29</version>
|
2019-07-25 06:43:38 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.duraspace</groupId>
|
|
|
|
<artifactId>codestyle</artifactId>
|
2020-03-04 16:22:02 -05:00
|
|
|
<version>1.1.0</version>
|
2019-07-25 06:43:38 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2019-11-20 20:06:42 -05:00
|
|
|
<version>1.11.0</version>
|
2019-07-25 06:43:38 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2015-11-19 23:47:12 +00:00
|
|
|
</plugins>
|
2016-07-06 06:47:56 +01:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2017-07-12 20:11:59 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.owasp</groupId>
|
|
|
|
<artifactId>dependency-check-maven</artifactId>
|
2017-09-18 17:01:22 +01:00
|
|
|
<version>2.1.1</version>
|
2017-07-12 20:11:59 +01:00
|
|
|
</plugin>
|
2016-07-06 06:47:56 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.5.5</version>
|
|
|
|
</plugin>
|
2016-07-18 19:27:53 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
2016-07-06 06:47:56 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2018-10-25 17:51:52 +01:00
|
|
|
<version>3.8.0</version>
|
2016-07-06 06:47:56 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2017-10-23 19:24:32 +01:00
|
|
|
<version>3.0.2</version>
|
2016-07-06 06:47:56 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
</plugin>
|
2017-09-16 23:20:33 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>3.6</version>
|
|
|
|
</plugin>
|
2016-07-06 06:47:56 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2017-10-23 19:24:32 +01:00
|
|
|
<version>3.2.0</version>
|
2016-07-06 06:47:56 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>1.9.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2018-07-06 14:54:21 -05:00
|
|
|
<version>1.6.7</version>
|
2016-07-06 06:47:56 +01:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2015-11-19 23:47:12 +00:00
|
|
|
</build>
|
|
|
|
|
2017-09-16 23:20:33 +01:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>2.9</version>
|
|
|
|
<configuration>
|
|
|
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
</configuration>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet><!-- by default, id = "default" -->
|
|
|
|
<reports><!-- select non-aggregate reports -->
|
|
|
|
<report>javadoc</report>
|
|
|
|
<report>test-javadoc</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
<reportSet><!-- aggregate reportSet, to define in poms having modules -->
|
|
|
|
<id>aggregate</id>
|
|
|
|
<inherited>false</inherited><!-- don't run aggregate in child modules -->
|
|
|
|
<reports>
|
|
|
|
<report>aggregate</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>aggregate</id>
|
|
|
|
<reports>
|
|
|
|
<report>aggregate</report>
|
|
|
|
<report>test-aggregate</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
2016-06-23 18:54:13 +01:00
|
|
|
<distributionManagement>
|
2017-09-16 23:20:33 +01:00
|
|
|
<site>
|
|
|
|
<id>vivo-project</id>
|
|
|
|
<url>https://vivo-project.github.io/</url>
|
|
|
|
</site>
|
2016-06-23 18:54:13 +01:00
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
2018-07-06 14:54:21 -05:00
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
2016-06-23 18:54:13 +01:00
|
|
|
</distributionManagement>
|
2018-05-30 14:47:11 -04:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-nexus-snapshots</id>
|
|
|
|
<name>Sonatype Nexus Snapshots</name>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2015-11-19 23:47:12 +00:00
|
|
|
</project>
|