Skip to content

Commit

Permalink
Merge pull request ArcBees#377 from ArcBees/cv_update_compound_jar
Browse files Browse the repository at this point in the history
GJ-19: Added new dependencies to gwtp-all.
  • Loading branch information
Chris-V committed Dec 12, 2013
2 parents 9e0d3ad + f51dd9e commit b4faf3c
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 35 deletions.
109 changes: 74 additions & 35 deletions gwtp-core/gwtp-all/pom.xml
@@ -1,5 +1,6 @@
<?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/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>

<parent>
Expand All @@ -20,22 +21,32 @@
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-mvp-client</artifactId>
<artifactId>gwtp-clients-common</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-clients-common</artifactId>
<artifactId>gwtp-crawler</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-client</artifactId>
<artifactId>gwtp-dispatch-common-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-shared</artifactId>
<artifactId>gwtp-dispatch-common-shared</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rest</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -48,14 +59,19 @@
<artifactId>gwtp-dispatch-rpc-server-guice</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-shared</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-server-spring</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-tester</artifactId>
<artifactId>gwtp-mvp-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -65,7 +81,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-crawler</artifactId>
<artifactId>gwtp-tester</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -97,78 +113,96 @@
</build>

<profiles>
<!-- Use 'release' profile to attach to the build the
compound sources jar and the compound javadoc jar. -->
<!-- Use 'release' profile to attach to the build the compound sources jar and the compound javadoc jar. -->
<profile>
<id>release</id>

<properties>
<unpackedDependenciesDir>${project.build.directory}/exploded-modules</unpackedDependenciesDir>
<unpackedJavadocDir>${project.build.directory}/apidocs</unpackedJavadocDir>
<javadocArtifactFile>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadocArtifactFile>
<javadocArtifactFile>${project.build.directory}/${project.build.finalName}-javadoc.jar
</javadocArtifactFile>
</properties>

<!-- The sources for each module -->
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-mvp-client</artifactId>
<version>${project.version}</version>
<artifactId>gwtp-clients-common</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-clients-common</artifactId>
<version>${project.version}</version>
<artifactId>gwtp-crawler</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-client</artifactId>
<version>${project.version}</version>
<artifactId>gwtp-dispatch-common-client</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-shared</artifactId>
<version>${project.version}</version>
<artifactId>gwtp-dispatch-common-shared</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rest</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-client</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-server</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-server-guice</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-shared</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-server-spring</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-tester</artifactId>
<version>${project.version}</version>
<artifactId>gwtp-mvp-client</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-processors</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-crawler</artifactId>
<version>${project.version}</version>
<artifactId>gwtp-tester</artifactId>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>

<!-- This is needed in order for the classes from gwt-dev that
Expand Down Expand Up @@ -241,7 +275,10 @@
<phase>compile</phase>
<configuration>
<target>
<javadoc packagenames="com.gwtplatform.*" maxmemory="256m" sourcepath="${unpackedDependenciesDir}" defaultexcludes="yes" destdir="${unpackedJavadocDir}" version="true" use="true" windowtitle="${project.name} ${project.version} API.">
<javadoc packagenames="com.gwtplatform.*" maxmemory="256m"
sourcepath="${unpackedDependenciesDir}" defaultexcludes="yes"
destdir="${unpackedJavadocDir}" version="true" use="true"
windowtitle="${project.name} ${project.version} API.">
<doctitle>
<![CDATA[<h1>${project.name} ${project.version} API</h1>]]>
</doctitle>
Expand All @@ -250,15 +287,17 @@
<a href="${project.organization.url}">${project.organization.name}</a>.
All Rights Reserved.</i>]]>
</bottom>
<classpath refid="maven.compile.classpath" />
<link href="http://download.oracle.com/javase/6/docs/api/" />
<link href="http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/" />
<link href="http://static.springsource.org/spring/docs/3.0.x/javadoc-api/" />
<link href="http://google-gin.googlecode.com/svn/trunk/javadoc/" />
<link href="http://google-guice.googlecode.com/svn/trunk/javadoc/" />
<link href="http://aopalliance.sourceforge.net/doc/" />
<classpath refid="maven.compile.classpath"/>
<link href="http://download.oracle.com/javase/6/docs/api/"/>
<link href="http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/"/>
<link href="http://static.springsource.org/spring/docs/3.0.x/javadoc-api/"/>
<link href="http://google-gin.googlecode.com/svn/trunk/javadoc/"/>
<link href="http://google-guice.googlecode.com/svn/trunk/javadoc/"/>
<link href="http://aopalliance.sourceforge.net/doc/"/>
<link href="https://github.com/nmorel/gwt-jackson/wiki/"/>
</javadoc>
<jar destfile="${javadocArtifactFile}" basedir="${unpackedJavadocDir}" includes="**/**" />
<jar destfile="${javadocArtifactFile}" basedir="${unpackedJavadocDir}"
includes="**/**"/>
</target>
</configuration>
<goals>
Expand Down
5 changes: 5 additions & 0 deletions gwtp-core/pom.xml
Expand Up @@ -117,6 +117,11 @@
</dependency>

<!-- Dispatch -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gwtp-dispatch-rpc-shared</artifactId>
Expand Down

0 comments on commit b4faf3c

Please sign in to comment.