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

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

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

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