root/branches/0.9.3.2/ambra/libs/js/pom.xml @ 7855

Revision 7855, 2.4 KB (checked in by dragisak, 12 months ago)

[maven-release-plugin] prepare release journal-publishing-system-0.9.3.3

  • Property svn:mime-type set to text/plain
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id HeadURL Revision
Line 
1<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">
2  <modelVersion>4.0.0</modelVersion>
3  <artifactId>ambra-js</artifactId>
4  <packaging>pom</packaging>
5  <version>0.9.3.3</version>
6  <name>Ambra Javascript Libraries</name>
7  <description>
8    Home for the dojo library and the custom dojo widets used by the web application.
9  </description>
10
11  <parent>
12    <groupId>org.topazproject</groupId>
13    <artifactId>ambra-libs</artifactId>
14    <version>0.9.3.3</version>
15  </parent>
16
17  <build>
18    <plugins>
19      <plugin>
20        <groupId>org.apache.maven.plugins</groupId>
21        <artifactId>maven-dependency-plugin</artifactId>
22        <executions>
23          <execution>
24            <id>unpack dojo</id>
25            <phase>generate-sources</phase>
26            <goals>
27              <goal>unpack</goal>
28            </goals>
29            <configuration>
30              <artifactItems>
31                <artifactItem>
32                  <groupId>org.dojotoolkit</groupId>
33                  <artifactId>dojo-src</artifactId>
34                  <version>1.3.1</version>
35                  <type>zip</type>
36                </artifactItem>
37              </artifactItems>
38              <outputDirectory>${project.build.directory}/dojo-src</outputDirectory>
39            </configuration>
40          </execution>
41        </executions>
42      </plugin>
43      <plugin>
44        <groupId>org.codehaus.groovy.maven</groupId>
45        <artifactId>gmaven-plugin</artifactId>
46        <executions>
47          <execution>
48            <phase>generate-sources</phase>
49            <goals>
50              <goal>execute</goal>
51            </goals>
52            <configuration>
53              <source>${pom.basedir}/src/main/scripts/dojoBuild.groovy</source>
54            </configuration>
55          </execution>
56        </executions>
57      </plugin>
58      <plugin>
59        <artifactId>maven-assembly-plugin</artifactId>
60        <configuration>
61          <descriptors>
62            <descriptor>src/main/assembly/assembly.xml</descriptor>
63          </descriptors>
64        </configuration>
65        <executions>
66          <execution>
67            <id>make-assembly</id>
68            <phase>package</phase>
69            <goals>
70              <goal>attached</goal>
71            </goals>
72          </execution>
73        </executions>
74      </plugin>
75    </plugins>
76  </build>
77</project>
Note: See TracBrowser for help on using the browser.