Skip to content

Commit

Permalink
Deploy release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaub committed Feb 27, 2013
1 parent e934d38 commit 4019974
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 25 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Update version numbers in the main pom.xml file. Generate an archive with all d

mvn assembly:single

For applications that already have the GeoTools dependency, an archive is published in repo.opengeo.org that contains only the JavaScript modules:
Deploy both the stand-alone archive and a jar with just the GeoScript JS modules (that depends on GeoTools):

mvn deploy

Expand Down
57 changes: 33 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,31 +205,40 @@
<descriptor>src/main/assembly/all.xml</descriptor>
<finalName>geoscript-js-shell-${project.version}</finalName>
</configuration>
<executions>
<execution>
<id>dist-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-test-resource</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>doc</directory>
<includes>
<include>**/*.rst</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-test-resource</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>doc</directory>
<includes>
<include>**/*.rst</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
Expand Down

0 comments on commit 4019974

Please sign in to comment.