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

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

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

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