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

Last change on this file since 2173 was 2173, checked in by pharms, 7 years ago

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

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