Skip to content

Commit

Permalink
[maven-release-plugin] prepare release 3.0.0.Alpha10
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed Jan 15, 2016
1 parent 4dffdf3 commit c87f98a
Show file tree
Hide file tree
Showing 45 changed files with 608 additions and 43 deletions.
2 changes: 1 addition & 1 deletion addressbuilder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion annotations-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>rewrite-parent</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion annotations-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>rewrite-parent</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion api-el/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion api-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion api-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion config-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>rewrite-parent</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion config-jodatime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>rewrite-parent</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion config-prettyfaces-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
263 changes: 263 additions & 0 deletions config-prettyfaces/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>rewrite-parent</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
<version>3.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>rewrite-config-prettyfaces</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<artifactSet>
<includes>
<include>commons-digester</include>
<include>commons-beanutils</include>
<include>commons-logging</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.commons</pattern>
<shadedPattern>org.ocpsoft.shade.org.apache.commons</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-api</artifactId>
<version>3.0.0.Alpha10</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>common-api</artifactId>
<groupId>org.ocpsoft.common</groupId>
</exclusion>
<exclusion>
<artifactId>logging-api</artifactId>
<groupId>org.ocpsoft.logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-api-el</artifactId>
<version>3.0.0.Alpha10</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-api-servlet</artifactId>
<version>3.0.0.Alpha10</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>rewrite-addressbuilder</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-annotations-impl</artifactId>
<version>3.0.0.Alpha10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-integration-faces</artifactId>
<version>3.0.0.Alpha10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.servlet</groupId>
<artifactId>jboss-servlet-api_2.5_spec</artifactId>
<version>1.0.1.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.faces</groupId>
<artifactId>jboss-jsf-api_2.1_spec</artifactId>
<version>2.0.9.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.el</groupId>
<artifactId>jboss-el-api_2.2_spec</artifactId>
<version>1.0.2.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-test-harness</artifactId>
<version>3.0.0.Alpha10</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>rewrite-test-base</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
</exclusion>
<exclusion>
<artifactId>hamcrest-library</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
<exclusion>
<artifactId>assertj-core</artifactId>
<groupId>org.assertj</groupId>
</exclusion>
<exclusion>
<artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId>
</exclusion>
<exclusion>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
</exclusion>
<exclusion>
<artifactId>htmlunit</artifactId>
<groupId>net.sourceforge.htmlunit</groupId>
</exclusion>
<exclusion>
<artifactId>shrinkwrap-resolver-api</artifactId>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
</exclusion>
<exclusion>
<artifactId>shrinkwrap-resolver-api-maven</artifactId>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
</exclusion>
<exclusion>
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
</exclusion>
<exclusion>
<artifactId>arquillian-junit-container</artifactId>
<groupId>org.jboss.arquillian.junit</groupId>
</exclusion>
<exclusion>
<artifactId>arquillian-drone-webdriver</artifactId>
<groupId>org.jboss.arquillian.extension</groupId>
</exclusion>
<exclusion>
<artifactId>arquillian-drone-webdriver-depchain</artifactId>
<groupId>org.jboss.arquillian.extension</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0-SP4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jboss-interceptor-api</artifactId>
<groupId>org.jboss.interceptor</groupId>
</exclusion>
<exclusion>
<artifactId>jsr250-api</artifactId>
<groupId>javax.annotation</groupId>
</exclusion>
<exclusion>
<artifactId>jboss-interceptors-api_1.1_spec</artifactId>
<groupId>org.jboss.spec.javax.interceptor</groupId>
</exclusion>
<exclusion>
<artifactId>javax.inject</artifactId>
<groupId>javax.inject</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymockclassextension</artifactId>
<version>2.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>cglib-nodep</artifactId>
<groupId>cglib</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.0.2.RELEASE</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>aopalliance</artifactId>
<groupId>aopalliance</groupId>
</exclusion>
<exclusion>
<artifactId>spring-beans</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>spring-context</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>spring-core</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.0.2.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<version.digester>2.0</version.digester>
</properties>
</project>

2 changes: 1 addition & 1 deletion config-proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>rewrite-parent</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion config-servlet-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion config-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Alpha10</version>
<relativePath>../</relativePath>
</parent>

Expand Down
Loading

0 comments on commit c87f98a

Please sign in to comment.