Skip to content

Commit

Permalink
Fix pom entries for our own deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
exabrial committed Jun 7, 2021
1 parent a9f98d6 commit 9f29455
Showing 1 changed file with 85 additions and 72 deletions.
157 changes: 85 additions & 72 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
<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">
<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>
<!-- To be able to deploy snapshots/releases to sonatype / maven central:

<!-- To be able to deploy snapshots/releases to sonatype / maven central:
https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<groupId>de.javakaffee.msm</groupId>
Expand Down Expand Up @@ -59,10 +62,10 @@
<module>tomcat8</module>
<module>tomcat9</module>
<module>kryo-serializer</module>
<!--module>javolution-serializer</module-->
<!--module>javolution-serializer</module -->
<module>xstream-serializer</module>
<module>flexjson-serializer</module>
<!--module>serializer-benchmark</module-->
<!--module>serializer-benchmark</module -->
</modules>

<build>
Expand Down Expand Up @@ -239,7 +242,7 @@
<version>${slf4j-version}</version>
<scope>test</scope>
</dependency>
<!-- dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j</artifactId>
<!-- dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j</artifactId>
<version>${slf4j-version}</version> </dependency -->
<!-- Testing -->
<dependency>
Expand Down Expand Up @@ -285,12 +288,12 @@
<artifactId>jsr305</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>3.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>3.0.1</version>
<scope>compile</scope>
</dependency>

<!-- Testing -->
<dependency>
Expand Down Expand Up @@ -345,10 +348,10 @@
<version>2.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.kstyrc</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.6</version>
<dependency>
<groupId>com.github.kstyrc</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.6</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -367,63 +370,73 @@

<repositories>
<repository>
<id>sonatype-releases</id>
<name>sonatype releases repo</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
<!-- msm maven repo with custom javolution jar and kryo jars -->
<repository>
<id>msm</id>
<name>msm repository</name>
<url>http://memcached-session-manager.googlecode.com/svn/maven</url>
</repository>
<repository>
<id>couchbase</id>
<name>Couchbase Repository</name>
<url>http://files.couchbase.com/maven2</url>
<id>emoneyusa-all</id>
<name>eMoneyUSA All</name>
<url>https://nexus.emoneyusa.com/repository/emoneyusa-all</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>emoneyusa-plugins</id>
<name>eMoneyUSA Plugins</name>
<releases>
<checksumPolicy>fail</checksumPolicy>
</releases>
<url>https://nexus.emoneyusa.com/repository/emoneyusa-all</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<snapshotRepository>
<id>emoneyusa-snapshot</id>
<url>https://nexus.emoneyusa.com/repository/emoneyusa-snapshots</url>
</snapshotRepository>
<repository>
<id>jboss</id>
<name>jboss Repository</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
<id>emoneyusa-release</id>
<url>https://nexus.emoneyusa.com/repository/emoneyusa-release</url>
</repository>
</repositories>
</distributionManagement>

<profiles>
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<profiles>
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 9f29455

Please sign in to comment.