Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
reg-app
Regapp
Commits
ded04e5b
Commit
ded04e5b
authored
Jul 12, 2018
by
michael.simon
Browse files
add maven deps for rest validation
parent
514c22aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
bwreg-webapp/pom.xml
View file @
ded04e5b
<!--
Copyright (c) 2014 Michael Simon.
All rights reserved. This program and the accompanying materials
are made available under the terms of the GNU Public License v3.0
which accompanies this distribution, and is available at
http://www.gnu.org/licenses/gpl.html
Contributors:
Michael Simon - initial
-->
<!-- Copyright (c) 2014 Michael Simon. All rights reserved. This program
and the accompanying materials are made available under the terms of the
GNU Public License v3.0 which accompanies this distribution, and is available
at http://www.gnu.org/licenses/gpl.html Contributors: Michael Simon - initial -->
<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>
...
...
@@ -18,7 +12,7 @@
<version>
2.6.1
</version>
</parent>
<packaging>
war
</packaging>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
...
...
@@ -96,7 +90,7 @@
<artifactId>
httpclient
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
...
...
@@ -108,6 +102,17 @@
<artifactId>
guava
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.jboss.resteasy
</groupId>
<artifactId>
resteasy-validator-provider-11
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.jboss.resteasy
</groupId>
<artifactId>
resteasy-jaxrs
</artifactId>
<scope>
provided
</scope>
</dependency>
</dependencies>
<build>
...
...
@@ -144,27 +149,11 @@
</webResources>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<goals>
<goal>schemagen</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<includes>
<include>edu/kit/scc/webreg/rest/dto/*.java</include>
</includes>
<outputDirectory>${project.build.directory}/schemas</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
-->
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId>
<version>1.3.1</version> <executions> <execution> <goals> <goal>schemagen</goal>
</goals> <phase>generate-resources</phase> <configuration> <includes> <include>edu/kit/scc/webreg/rest/dto/*.java</include>
</includes> <outputDirectory>${project.build.directory}/schemas</outputDirectory>
</configuration> </execution> </executions> </plugin> -->
</plugins>
</build>
...
...
pom.xml
View file @
ded04e5b
<!--
Copyright (c) 2014 Michael Simon.
All rights reserved. This program and the accompanying materials
are made available under the terms of the GNU Public License v3.0
which accompanies this distribution, and is available at
http://www.gnu.org/licenses/gpl.html
Contributors:
Michael Simon - initial
-->
<!-- Copyright (c) 2014 Michael Simon. All rights reserved. This program
and the accompanying materials are made available under the terms of the
GNU Public License v3.0 which accompanies this distribution, and is available
at http://www.gnu.org/licenses/gpl.html Contributors: Michael Simon - initial -->
<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>
...
...
@@ -57,9 +51,9 @@
<version>
1.7
</version>
</dependency>
<dependency>
<groupId>
commons-beanutils
</groupId>
<artifactId>
commons-beanutils
</artifactId>
<version>
1.9.1
</version>
<groupId>
commons-beanutils
</groupId>
<artifactId>
commons-beanutils
</artifactId>
<version>
1.9.1
</version>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
...
...
@@ -106,7 +100,7 @@
<artifactId>
slf4j-api
</artifactId>
<version>
1.7.2
</version>
</dependency>
<dependency>
<groupId>
org.drools
</groupId>
<artifactId>
drools-bom
</artifactId>
...
...
@@ -124,7 +118,7 @@
<artifactId>
dom4j
</artifactId>
<groupId>
dom4j
</groupId>
<version>
1.6.1
</version>
</dependency>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
...
...
@@ -145,21 +139,21 @@
<artifactId>
ganymed-ssh2
</artifactId>
<version>
262
</version>
</dependency>
<dependency>
<groupId>
org.jboss.msc
</groupId>
<artifactId>
jboss-msc
</artifactId>
<version>
1.0.4.GA
</version>
</dependency>
<dependency>
<groupId>
org.jboss.msc
</groupId>
<artifactId>
jboss-msc
</artifactId>
<version>
1.0.4.GA
</version>
</dependency>
<dependency>
<groupId>
org.wildfly
</groupId>
<artifactId>
wildfly-clustering-common
</artifactId>
<version>
8.2.0.Final
</version>
<exclusions>
<exclusion>
<artifactId>
jconsole
</artifactId>
<groupId>
sun.jdk
</groupId>
</exclusion>
</exclusions>
<exclusions>
<exclusion>
<artifactId>
jconsole
</artifactId>
<groupId>
sun.jdk
</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.wildfly
</groupId>
...
...
@@ -171,6 +165,16 @@
<artifactId>
openstack-keystone
</artifactId>
<version>
1.9.0
</version>
</dependency>
<dependency>
<groupId>
org.jboss.resteasy
</groupId>
<artifactId>
resteasy-validator-provider-11
</artifactId>
<version>
3.0.3.Final
</version>
</dependency>
<dependency>
<groupId>
org.jboss.resteasy
</groupId>
<artifactId>
resteasy-jaxrs
</artifactId>
<version>
3.0.3.Final
</version>
</dependency>
</dependencies>
</dependencyManagement>
...
...
@@ -254,8 +258,8 @@
<bwreg.template.left-side-bar>
left-side-bar.xhtml
</bwreg.template.left-side-bar>
<bwreg.template.left-side-bar-admin>
left-side-bar-admin.xhtml
</bwreg.template.left-side-bar-admin>
<bwreg.template.footer>
footer.xhtml
</bwreg.template.footer>
<bwreg.jboss-singleton>
org.jboss.as.clustering.singleton
</bwreg.jboss-singleton>
<bwreg.jboss-singleton-activator>
edu.kit.scc.webreg.service.timer.ClusterSingletonServiceActivator
</bwreg.jboss-singleton-activator>
<bwreg.jboss-singleton>
org.jboss.as.clustering.singleton
</bwreg.jboss-singleton>
<bwreg.jboss-singleton-activator>
edu.kit.scc.webreg.service.timer.ClusterSingletonServiceActivator
</bwreg.jboss-singleton-activator>
</properties>
</profile>
<profile>
...
...
@@ -272,8 +276,8 @@
<bwreg.template.left-side-bar>
left-side-bar.xhtml
</bwreg.template.left-side-bar>
<bwreg.template.left-side-bar-admin>
left-side-bar-admin.xhtml
</bwreg.template.left-side-bar-admin>
<bwreg.template.footer>
footer.xhtml
</bwreg.template.footer>
<bwreg.jboss-singleton>
org.jboss.as.clustering.singleton
</bwreg.jboss-singleton>
<bwreg.jboss-singleton-activator>
edu.kit.scc.webreg.service.timer.ClusterSingletonServiceActivator
</bwreg.jboss-singleton-activator>
<bwreg.jboss-singleton>
org.jboss.as.clustering.singleton
</bwreg.jboss-singleton>
<bwreg.jboss-singleton-activator>
edu.kit.scc.webreg.service.timer.ClusterSingletonServiceActivator
</bwreg.jboss-singleton-activator>
</properties>
</profile>
...
...
@@ -336,12 +340,12 @@
</executions>
<dependencies>
<dependency>
<groupId>
net.sf.docbook
</groupId>
<artifactId>
docbook-xml
</artifactId>
<version>
5.0-all
</version>
<classifier>
resources
</classifier>
<type>
zip
</type>
<scope>
runtime
</scope>
<groupId>
net.sf.docbook
</groupId>
<artifactId>
docbook-xml
</artifactId>
<version>
5.0-all
</version>
<classifier>
resources
</classifier>
<type>
zip
</type>
<scope>
runtime
</scope>
</dependency>
</dependencies>
<configuration>
...
...
@@ -357,10 +361,10 @@
<includes>
index.xml
</includes>
</configuration>
</plugin>
</plugins>
</plugins>
</build>
</profile>
</profiles>
</project>
Write
Preview
Markdown
is supported
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