Skip to content

Commit

Permalink
Added gpg plugin back in
Browse files Browse the repository at this point in the history
  • Loading branch information
scottslewis committed Sep 10, 2020
1 parent f500070 commit 1446fef
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 6 deletions.
51 changes: 47 additions & 4 deletions generator/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>grpc-osgi-generator</artifactId>
<version>1.3.0</version>
<version>1.5.3</version>
<build>
<extensions>
<extension>
Expand All @@ -17,6 +17,49 @@
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<author>false</author>
<breakiterator>true</breakiterator>
<doclint>accessibility,html,reference,syntax</doclint>
<keywords>true</keywords>
<version>false</version>
<source>8</source>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
Expand Down Expand Up @@ -44,7 +87,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>mypackage.Main</mainClass>
<mainClass>org.eclipse.ecf.grpc.osgigenerator.OSGiGenerator</mainClass>
</manifest>
</archive>
</configuration>
Expand All @@ -68,8 +111,8 @@
<java.version>1.8</java.version>
<java.test.version>1.8</java.test.version>
<grpc.contrib.version>0.8.1</grpc.contrib.version>
<jprotoc.version>0.9.1</jprotoc.version>
<grpc.version>1.23.0</grpc.version>
<jprotoc.version>1.0.1</jprotoc.version>
<grpc.version>1.31.1</grpc.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
Expand Down
2 changes: 0 additions & 2 deletions generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand All @@ -114,7 +113,6 @@
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down

0 comments on commit 1446fef

Please sign in to comment.