Skip to content

Commit

Permalink
Migrated from sonatype parent #91.
Browse files Browse the repository at this point in the history
  • Loading branch information
highsource committed Jun 4, 2018
1 parent b0229f8 commit 7ce3b88
Showing 1 changed file with 50 additions and 5 deletions.
55 changes: 50 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@
<name>JAXB2 Basics - Project</name>
<url>https://github.com/highsource/jaxb2-basics</url>
<description>JAXB2 Basics is a part of JAXB2 Commons project which implements plugins and tools for JAXB 2.x reference implementation.</description>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/highsource/jaxb2-basics/issues</url>
Expand Down Expand Up @@ -96,8 +91,53 @@
<module>dist</module>
</modules>
</profile>
<profile>
<id>sonatype-oss-release</id>
<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>
</plugin>
<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>
</plugins>
</build>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jaxb.version>2.3.0</jaxb.version>
<activation.version>1.2.0</activation.version>
<maven-jaxb2-plugin.version>0.14.0</maven-jaxb2-plugin.version>
Expand Down Expand Up @@ -386,6 +426,11 @@
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
Expand Down

0 comments on commit 7ce3b88

Please # to comment.