source: trunk/autoquest-htmlmonitor/pom.xml @ 1518

Last change on this file since 1518 was 1518, checked in by pharms, 10 years ago

[maven-release-plugin] prepare for next development iteration

File size: 5.4 KB
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/xsd/maven-4.0.0.xsd">
2    <modelVersion>4.0.0</modelVersion>
3    <groupId>de.ugoe.cs.autoquest</groupId>
4    <artifactId>autoquest-htmlmonitor</artifactId>
5    <version>0.1.1-SNAPSHOT</version>
6    <name>autoquest-htmlmonitor</name>
7    <licenses>
8        <license>
9            <name>The Apache Software License, Version 2.0</name>
10            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
11        </license>
12    </licenses>
13    <packaging>jar</packaging>
14    <scm>
15        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/tags/autoquest-release-0.1.0/autoquest-htmlmonitor</url>
16    </scm>
17    <pluginRepositories>
18        <pluginRepository>
19            <id>javascript</id>
20            <name>Codehaus Snapshot Repository</name>
21            <url>https://nexus.codehaus.org/content/groups/snapshots-group/</url>
22            <layout>default</layout>
23            <snapshots>
24                <enabled>true</enabled>
25            </snapshots>
26            <releases>
27                <updatePolicy>never</updatePolicy>
28            </releases>
29        </pluginRepository>
30    </pluginRepositories>
31    <properties>
32        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33    </properties>
34    <dependencies>
35        <dependency>
36            <groupId>de.ugoe.cs</groupId>
37            <artifactId>java-utils</artifactId>
38            <version>0.1.1-SNAPSHOT</version>
39        </dependency>
40        <dependency>
41            <groupId>org.eclipse.jetty</groupId>
42            <artifactId>jetty-server</artifactId>
43            <version>9.1.0.M0</version>
44        </dependency>
45        <dependency>
46            <groupId>org.eclipse.jetty</groupId>
47            <artifactId>jetty-servlet</artifactId>
48            <version>9.1.0.M0</version>
49        </dependency>
50        <dependency>
51            <groupId>org.eclipse.jetty</groupId>
52            <artifactId>jetty-servlets</artifactId>
53            <version>9.1.0.M0</version>
54        </dependency>
55        <dependency>
56            <groupId>com.googlecode.json-simple</groupId>
57            <artifactId>json-simple</artifactId>
58            <version>1.1.1</version>
59        </dependency>
60        <dependency>
61            <groupId>commons-codec</groupId>
62            <artifactId>commons-codec</artifactId>
63            <version>1.7</version>
64        </dependency>
65    </dependencies>
66    <build>
67        <resources>
68            <resource>
69                <directory>src/main/js</directory>
70            </resource>
71        </resources>
72        <extensions>
73            <extension>
74                <groupId>org.codehaus.mojo</groupId>
75                <artifactId>javascript-maven-plugin</artifactId>
76                <version>2.0.0-alpha-1</version>
77            </extension>
78        </extensions>
79        <plugins>
80            <plugin>
81                <groupId>org.codehaus.mojo</groupId>
82                <artifactId>jslint-maven-plugin</artifactId>
83                <version>1.0.1</version>
84                <configuration>
85                    <includes>
86                        <include>autoquest-htmlmonitor.js</include>
87                    </includes>
88                    <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction>
89                    <failOnIssues>false</failOnIssues>
90                </configuration>
91                <executions>
92                    <execution>
93                        <goals>
94                            <goal>jslint</goal>
95                        </goals>
96                    </execution>
97                </executions>
98            </plugin>
99            <plugin>
100                <artifactId>maven-compiler-plugin</artifactId>
101                <version>2.3.2</version>
102                <configuration>
103                    <source>1.7</source>
104                    <target>1.7</target>
105                </configuration>
106            </plugin>
107            <plugin>
108                <groupId>org.apache.maven.plugins</groupId>
109                <artifactId>maven-jar-plugin</artifactId>
110                <configuration>
111                    <archive>
112                        <manifest>
113                            <addClasspath>true</addClasspath>
114                            <classpathPrefix>lib/</classpathPrefix>
115                            <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass>
116                        </manifest>
117                    </archive>
118                </configuration>
119            </plugin>
120            <plugin>
121                <artifactId>maven-assembly-plugin</artifactId>
122                <version>2.2-beta-2</version>
123                <configuration>
124                    <descriptors>
125                        <descriptor>src/main/assembly/bin.xml</descriptor>
126                        <descriptor>src/main/assembly/config.xml</descriptor>
127                        <descriptor>src/main/assembly/drupal.xml</descriptor>
128                    </descriptors>
129                </configuration>
130                <executions>
131                    <execution>
132                        <id>make-assembly</id>
133                        <phase>package</phase>
134                        <goals>
135                            <goal>single</goal>
136                        </goals>
137                    </execution>
138                </executions>
139            </plugin>
140        </plugins>
141    </build>
142</project>
Note: See TracBrowser for help on using the repository browser.