UI initial implementation.
[validation.git] / ui / pom.xml
1 <!--
2 Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.akraino.validation</groupId>
21   <artifactId>ui</artifactId>
22   <packaging>war</packaging>
23   <version>0.0.1-SNAPSHOT</version>
24   <name>AECBlueprintValidationUI Maven Webapp</name>
25   <url>http://maven.apache.org</url>
26   <properties>
27     <java-version>1.8</java-version>
28     <org.springframework-version>4.3.0.RELEASE</org.springframework-version>
29     <org.springframework.security.version>3.2.3.RELEASE</org.springframework.security.version>
30     <jackson.library>2.7.5</jackson.library>
31     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32     <jersey-version>1.19.4</jersey-version>
33     <google.guava-version>27.1-jre</google.guava-version>
34   </properties>
35
36   <repositories>
37     <repository>
38       <id>central</id>
39       <name>Central Repository</name>
40       <url>http://repo.maven.apache.org/maven2</url>
41       <layout>default</layout>
42       <snapshots>
43         <enabled>false</enabled>
44       </snapshots>
45     </repository>
46   </repositories>
47
48   <pluginRepositories>
49     <pluginRepository>
50       <id>central</id>
51       <name>Maven Plugin Repository</name>
52       <url>http://repo1.maven.org/maven2</url>
53       <layout>default</layout>
54       <snapshots>
55         <enabled>false</enabled>
56       </snapshots>
57       <releases>
58         <updatePolicy>never</updatePolicy>
59       </releases>
60     </pluginRepository>
61   </pluginRepositories>
62
63   <dependencies>
64     <dependency>
65       <groupId>junit</groupId>
66       <artifactId>junit</artifactId>
67       <version>4.12</version>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>commons-codec</groupId>
72       <artifactId>commons-codec</artifactId>
73       <version>1.11</version>
74     </dependency>
75     <dependency>
76       <groupId>org.springframework</groupId>
77       <artifactId>spring-webmvc</artifactId>
78       <version>${org.springframework-version}</version>
79     </dependency>
80     <dependency>
81       <groupId>org.springframework</groupId>
82       <artifactId>spring-context</artifactId>
83       <version>${org.springframework-version}</version>
84     </dependency>
85     <dependency>
86       <groupId>org.springframework</groupId>
87       <artifactId>spring-orm</artifactId>
88       <version>${org.springframework-version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.springframework</groupId>
92       <artifactId>spring-tx</artifactId>
93       <version>${org.springframework-version}</version>
94     </dependency>
95     <dependency>
96       <groupId>commons-fileupload</groupId>
97       <artifactId>commons-fileupload</artifactId>
98       <version>1.3.2</version>
99     </dependency>
100     <dependency>
101       <groupId>org.hibernate</groupId>
102       <artifactId>hibernate-core</artifactId>
103       <version>5.2.6.Final</version>
104     </dependency>
105     <dependency>
106       <groupId>org.javassist</groupId>
107       <artifactId>javassist</artifactId>
108       <version>3.18.2-GA</version>
109     </dependency>
110     <dependency>
111       <groupId>org.hibernate</groupId>
112       <artifactId>hibernate-c3p0</artifactId>
113       <version>5.2.6.Final</version>
114     </dependency>
115     <dependency>
116       <groupId>commons-dbcp</groupId>
117       <artifactId>commons-dbcp</artifactId>
118       <version>1.4</version>
119     </dependency>
120     <dependency>
121       <groupId>com.mchange</groupId>
122       <artifactId>c3p0</artifactId>
123       <version>0.9.5.2</version>
124     </dependency>
125     <dependency>
126       <groupId>org.hibernate</groupId>
127       <artifactId>hibernate-validator</artifactId>
128       <version>5.4.1.Final</version>
129     </dependency>
130     <dependency>
131       <groupId>log4j</groupId>
132       <artifactId>log4j</artifactId>
133       <version>1.2.17</version>
134     </dependency>
135     <dependency>
136       <groupId>org.springframework</groupId>
137       <artifactId>spring-test</artifactId>
138       <version>${org.springframework-version}</version>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>javax.servlet</groupId>
143       <artifactId>javax.servlet-api</artifactId>
144       <version>3.0.1</version>
145       <scope>provided</scope>
146     </dependency>
147     <dependency>
148       <groupId>javax.servlet</groupId>
149       <artifactId>jstl</artifactId>
150       <version>1.2</version>
151     </dependency>
152     <dependency>
153       <groupId>com.fasterxml.jackson.core</groupId>
154       <artifactId>jackson-databind</artifactId>
155       <version>${jackson.library}</version>
156     </dependency>
157     <dependency>
158       <groupId>com.fasterxml.jackson.dataformat</groupId>
159       <artifactId>jackson-dataformat-xml</artifactId>
160       <version>${jackson.library}</version>
161     </dependency>
162     <dependency>
163       <groupId>com.fasterxml.jackson.dataformat</groupId>
164       <artifactId>jackson-dataformat-yaml</artifactId>
165       <version>${jackson.library}</version>
166     </dependency>
167     <dependency>
168       <groupId>org.apache.commons</groupId>
169       <artifactId>commons-lang3</artifactId>
170       <version>3.4</version>
171     </dependency>
172     <dependency>
173       <groupId>org.postgresql</groupId>
174       <artifactId>postgresql</artifactId>
175       <version>42.2.2</version>
176     </dependency>
177     <dependency>
178       <groupId>com.sun.jersey</groupId>
179       <artifactId>jersey-json</artifactId>
180       <version>${jersey-version}</version>
181     </dependency>
182     <dependency>
183       <groupId>com.sun.jersey</groupId>
184       <artifactId>jersey-client</artifactId>
185       <version>${jersey-version}</version>
186     </dependency>
187     <dependency>
188       <groupId>com.google.guava</groupId>
189       <artifactId>guava</artifactId>
190       <version>${google.guava-version}</version>
191     </dependency>
192     <dependency>
193       <groupId>org.json</groupId>
194       <artifactId>json</artifactId>
195       <version>20180813</version>
196     </dependency>
197     <dependency>
198       <groupId>org.jsoup</groupId>
199       <artifactId>jsoup</artifactId>
200       <version>1.12.1</version>
201     </dependency>
202     <dependency>
203       <groupId>commons-httpclient</groupId>
204       <artifactId>commons-httpclient</artifactId>
205       <version>3.1</version>
206     </dependency>
207
208   </dependencies>
209
210   <build>
211     <finalName>AECBlueprintValidationUI</finalName>
212     <pluginManagement>
213       <plugins>
214         <plugin>
215           <groupId>org.apache.maven.plugins</groupId>
216           <artifactId>maven-compiler-plugin</artifactId>
217           <version>2.3.2</version>
218           <configuration>
219             <source>${java-version}</source>
220             <target>${java-version}</target>
221           </configuration>
222         </plugin>
223         <plugin>
224           <groupId>org.apache.maven.plugins</groupId>
225           <artifactId>maven-war-plugin</artifactId>
226           <version>2.4</version>
227           <configuration>
228             <warSourceDirectory>src/main/webapp</warSourceDirectory>
229             <warName>AECBlueprintValidationUI</warName>
230             <failOnMissingWebXml>false</failOnMissingWebXml>
231           </configuration>
232         </plugin>
233       </plugins>
234     </pluginManagement>
235   </build>
236 </project>