Skip to content

Commit

Permalink
Releasing version 20.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed Jan 14, 2020
1 parent 75fcca7 commit a2357cb
Show file tree
Hide file tree
Showing 75 changed files with 172 additions and 75 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-api</artifactId>
Expand Down
98 changes: 97 additions & 1 deletion arquillian/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>cloud.piranha.arquillian</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
<packaging>pom</packaging>

<name>Piranha Arquillian</name>
Expand Down Expand Up @@ -53,13 +53,69 @@
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.3</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<inherited>true</inherited>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifest>
<addDefaultEntries>false</addDefaultEntries>
</manifest>
</archive>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencyManagement>
Expand All @@ -81,4 +137,44 @@
</dependencies>
</dependencyManagement>

<profiles>
<profile>
<id>jdk8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<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>

</project>
3 changes: 2 additions & 1 deletion arquillian/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
<parent>
<groupId>cloud.piranha.arquillian</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>


Expand Down
2 changes: 1 addition & 1 deletion cdi/openwebbeans/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.cdi</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-cdi-openwebbeans</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.cdi</groupId>
Expand Down
2 changes: 1 addition & 1 deletion cdi/weld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>cloud.piranha.cdi</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-cdi-weld</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion embedded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-embedded</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion faces/mojarra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.faces</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-faces-mojarra</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion faces/myfaces/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.faces</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-faces-myfaces</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion faces/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.faces</groupId>
Expand Down
2 changes: 1 addition & 1 deletion http/grizzly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.http</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-http-grizzly</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion http/netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.http</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-http-netty</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.http</groupId>
Expand Down
2 changes: 1 addition & 1 deletion http/singlethread/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.http</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-http-singlethread</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion micro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-micro</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion microprofile/omnifaces/jwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.microprofile.omnifaces</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-microprofile-omnifaces-jwt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion microprofile/omnifaces/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.microprofile</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.microprofile.omnifaces</groupId>
Expand Down
2 changes: 1 addition & 1 deletion microprofile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.microprofile</groupId>
Expand Down
2 changes: 1 addition & 1 deletion microprofile/smallrye/health/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.microprofile.smallrye</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-microprofile-smallrye-health</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion microprofile/smallrye/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.microprofile</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.microprofile.smallrye</groupId>
Expand Down
2 changes: 1 addition & 1 deletion nano/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pages/jasper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.pages</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-pages-jasper</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pages/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.pages</groupId>
Expand Down
2 changes: 1 addition & 1 deletion piranha/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
<packaging>pom</packaging>

<name>Piranha Project</name>
Expand Down
2 changes: 1 addition & 1 deletion resource/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.resource</groupId>
Expand Down
2 changes: 1 addition & 1 deletion resource/shrinkwrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.resource</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-resource-shrinkwrap</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion rest/jersey/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.rest</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-rest-jersey</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<groupId>cloud.piranha.rest</groupId>
Expand Down
2 changes: 1 addition & 1 deletion security/eleos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.security</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-security-eleos</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion security/exousia/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>cloud.piranha.security</groupId>
<artifactId>project</artifactId>
<version>20.1.0</version>
<version>20.1.1</version>
</parent>

<artifactId>piranha-security-exousia</artifactId>
Expand Down
Loading

0 comments on commit a2357cb

Please sign in to comment.