Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
runcon
Plantuml Server
Commits
017c6902
Commit
017c6902
authored
May 28, 2013
by
Maxime Sinclair
Browse files
Formatted and tests skipped
parent
3bc2461f
Changes
1
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
017c6902
<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"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.sourceforge.plantuml
</groupId>
<artifactId>
plantumlservlet
</artifactId>
<version>
1-SNAPSHOT
</version>
<name>
PlantUML Servlet
</name>
<packaging>
war
</packaging>
<build>
<finalName>
plantuml
</finalName>
<plugins>
<plugin>
<artifactId>
maven-eclipse-plugin
</artifactId>
<version>
2.8
</version>
<configuration>
<wtpversion>
1.5
</wtpversion>
<wtpContextName>
plantuml
</wtpContextName>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
2.3.2
</version>
<configuration>
<source>
1.6
</source>
<target>
1.6
</target>
</configuration>
</plugin>
<plugin>
<groupId>
org.mortbay.jetty
</groupId>
<artifactId>
jetty-maven-plugin
</artifactId>
<version>
${jetty.version}
</version>
<configuration>
<scanIntervalSeconds>
5
</scanIntervalSeconds>
<webApp>
<contextPath>
/plantuml
</contextPath>
</webApp>
</configuration>
</plugin>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.sourceforge.plantuml
</groupId>
<artifactId>
plantumlservlet
</artifactId>
<version>
1-SNAPSHOT
</version>
<name>
PlantUML Servlet
</name>
<packaging>
war
</packaging>
<build>
<finalName>
plantuml
</finalName>
<plugins>
<plugin>
<artifactId>
maven-eclipse-plugin
</artifactId>
<version>
2.8
</version>
<configuration>
<wtpversion>
1.5
</wtpversion>
<wtpContextName>
plantuml
</wtpContextName>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
2.3.2
</version>
<configuration>
<source>
1.6
</source>
<target>
1.6
</target>
</configuration>
</plugin>
<plugin>
<groupId>
org.mortbay.jetty
</groupId>
<artifactId>
jetty-maven-plugin
</artifactId>
<version>
${jetty.version}
</version>
<configuration>
<scanIntervalSeconds>
5
</scanIntervalSeconds>
<webApp>
<contextPath>
/plantuml
</contextPath>
</webApp>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-war-plugin
</artifactId>
...
...
@@ -52,61 +52,69 @@
</webResources>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
2.14.1
</version>
<configuration>
<skipTests>
true
</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<jetty.version>
8.0.4.v20111024
</jetty.version>
<maven.build.timestamp.format>
yyyyMMdd-HHmm
</maven.build.timestamp.format>
<jetty.version>
8.0.4.v20111024
</jetty.version>
<maven.build.timestamp.format>
yyyyMMdd-HHmm
</maven.build.timestamp.format>
<timestamp>
${maven.build.timestamp}
</timestamp>
</properties>
<dependencies>
<dependency>
<groupId>
net.sourceforge.plantuml
</groupId>
<artifactId>
plantuml
</artifactId>
<version>
LATEST
</version>
</dependency>
<dependency>
<groupId>
HTTPClient
</groupId>
<artifactId>
HTTPClient
</artifactId>
<version>
0.3-3
</version>
</dependency>
<dependency>
<groupId>
javax.servlet
</groupId>
<artifactId>
servlet-api
</artifactId>
<version>
2.4
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.2
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
httpunit
</groupId>
<artifactId>
httpunit
</artifactId>
<version>
1.7
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
rhino
</groupId>
<artifactId>
js
</artifactId>
<version>
1.7R2
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.eclipse.jetty.aggregate
</groupId>
<artifactId>
jetty-all
</artifactId>
<version>
${jetty.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.mortbay.jetty
</groupId>
<artifactId>
jsp-2.1-glassfish
</artifactId>
<version>
2.1.v20100127
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</properties>
<dependencies>
<dependency>
<groupId>
net.sourceforge.plantuml
</groupId>
<artifactId>
plantuml
</artifactId>
<version>
LATEST
</version>
</dependency>
<dependency>
<groupId>
HTTPClient
</groupId>
<artifactId>
HTTPClient
</artifactId>
<version>
0.3-3
</version>
</dependency>
<dependency>
<groupId>
javax.servlet
</groupId>
<artifactId>
servlet-api
</artifactId>
<version>
2.4
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.2
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
httpunit
</groupId>
<artifactId>
httpunit
</artifactId>
<version>
1.7
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
rhino
</groupId>
<artifactId>
js
</artifactId>
<version>
1.7R2
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.eclipse.jetty.aggregate
</groupId>
<artifactId>
jetty-all
</artifactId>
<version>
${jetty.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.mortbay.jetty
</groupId>
<artifactId>
jsp-2.1-glassfish
</artifactId>
<version>
2.1.v20100127
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment