|
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/maven-v4_0_0.xsd"> |
2 |
| - <modelVersion>4.0.0</modelVersion> |
3 |
| - <groupId>com.okdevtv</groupId> |
4 |
| - <artifactId>photogallery</artifactId> |
5 |
| - <packaging>war</packaging> |
6 |
| - <version>0.0.1-SNAPSHOT</version> |
7 |
| - <name>photogallery Maven Webapp</name> |
8 |
| - <url>http://maven.apache.org</url> |
9 |
| - <dependencies> |
10 |
| - <dependency> |
11 |
| - <groupId>javax.servlet</groupId> |
12 |
| - <artifactId>javax.servlet-api</artifactId> |
13 |
| - <version>3.1.0</version> |
14 |
| - <scope>provided</scope> |
15 |
| - </dependency> |
16 |
| - <dependency> |
17 |
| - <groupId>org.apache.tomcat</groupId> |
18 |
| - <artifactId>tomcat-catalina</artifactId> |
19 |
| - <version>8.5.20</version> |
20 |
| - <scope>provided</scope> |
21 |
| - </dependency> |
22 |
| - <dependency> |
23 |
| - <groupId>javax.servlet.jsp</groupId> |
24 |
| - <artifactId>javax.servlet.jsp-api</artifactId> |
25 |
| - <version>2.3.1</version> |
26 |
| - <scope>provided</scope> |
27 |
| - </dependency> |
28 |
| - <dependency> |
29 |
| - <groupId>javax.servlet</groupId> |
30 |
| - <artifactId>jstl</artifactId> |
31 |
| - <version>1.2</version> |
32 |
| - </dependency> |
33 |
| - <dependency> |
34 |
| - <groupId>mysql</groupId> |
35 |
| - <artifactId>mysql-connector-java</artifactId> |
36 |
| - <version>5.1.38</version> |
37 |
| - </dependency> |
38 |
| - <dependency> |
39 |
| - <groupId>commons-fileupload</groupId> |
40 |
| - <artifactId>commons-fileupload</artifactId> |
41 |
| - <version>1.3.3</version> |
42 |
| - </dependency> |
43 |
| - |
44 |
| - <dependency> |
45 |
| - <groupId>org.springframework</groupId> |
46 |
| - <artifactId>spring-webmvc</artifactId> |
47 |
| - <version>3.2.18.RELEASE</version> |
48 |
| - </dependency> |
49 |
| - <dependency> |
50 |
| - <groupId>org.springframework</groupId> |
51 |
| - <artifactId>spring-jdbc</artifactId> |
52 |
| - <version>3.2.18.RELEASE</version> |
53 |
| - </dependency> |
54 |
| - <dependency> |
55 |
| - <groupId>org.springframework</groupId> |
56 |
| - <artifactId>spring-test</artifactId> |
57 |
| - <version>3.2.18.RELEASE</version> |
58 |
| - <scope>test</scope> |
59 |
| - </dependency> |
60 |
| - |
61 |
| - |
62 |
| - <dependency> |
63 |
| - <groupId>junit</groupId> |
64 |
| - <artifactId>junit</artifactId> |
65 |
| - <version>4.8.2</version> |
66 |
| - <scope>test</scope> |
67 |
| - </dependency> |
68 |
| - <dependency> |
69 |
| - <groupId>com.h2database</groupId> |
70 |
| - <artifactId>h2</artifactId> |
71 |
| - <version>1.4.196</version> |
72 |
| - <scope>test</scope> |
73 |
| - </dependency> |
74 |
| - </dependencies> |
75 |
| - <build> |
76 |
| - <finalName>photogallery</finalName> |
77 |
| - <plugins> |
78 |
| - <plugin> |
79 |
| - <groupId>org.apache.maven.plugins</groupId> |
80 |
| - <artifactId>maven-compiler-plugin</artifactId> |
81 |
| - <version>3.1</version> |
82 |
| - <configuration> |
83 |
| - <source>1.6</source> |
84 |
| - <target>1.6</target> |
85 |
| - <debug>true</debug> |
86 |
| - <optimize>false</optimize> |
87 |
| - <fork>true</fork> |
88 |
| - </configuration> |
89 |
| - </plugin> |
90 |
| - </plugins> |
91 |
| - </build> |
92 |
| -</project> |
| 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/maven-v4_0_0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>com.okdevtv</groupId> |
| 4 | + <artifactId>photogallery</artifactId> |
| 5 | + <packaging>war</packaging> |
| 6 | + <version>0.0.1-SNAPSHOT</version> |
| 7 | + <name>photogallery Maven Webapp</name> |
| 8 | + <url>http://maven.apache.org</url> |
| 9 | + <dependencies> |
| 10 | + <dependency> |
| 11 | + <groupId>javax.servlet</groupId> |
| 12 | + <artifactId>javax.servlet-api</artifactId> |
| 13 | + <version>3.1.0</version> |
| 14 | + <scope>provided</scope> |
| 15 | + </dependency> |
| 16 | + <dependency> |
| 17 | + <groupId>org.apache.tomcat</groupId> |
| 18 | + <artifactId>tomcat-catalina</artifactId> |
| 19 | + <version>8.5.20</version> |
| 20 | + <scope>provided</scope> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>javax.servlet.jsp</groupId> |
| 24 | + <artifactId>javax.servlet.jsp-api</artifactId> |
| 25 | + <version>2.3.1</version> |
| 26 | + <scope>provided</scope> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>javax.servlet</groupId> |
| 30 | + <artifactId>jstl</artifactId> |
| 31 | + <version>1.2</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>mysql</groupId> |
| 35 | + <artifactId>mysql-connector-java</artifactId> |
| 36 | + <version>5.1.38</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>commons-fileupload</groupId> |
| 40 | + <artifactId>commons-fileupload</artifactId> |
| 41 | + <version>1.3.3</version> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>org.springframework</groupId> |
| 46 | + <artifactId>spring-webmvc</artifactId> |
| 47 | + <version>3.2.18.RELEASE</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.springframework</groupId> |
| 51 | + <artifactId>spring-jdbc</artifactId> |
| 52 | + <version>3.2.18.RELEASE</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.springframework</groupId> |
| 56 | + <artifactId>spring-test</artifactId> |
| 57 | + <version>3.2.18.RELEASE</version> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + |
| 62 | + <dependency> |
| 63 | + <groupId>junit</groupId> |
| 64 | + <artifactId>junit</artifactId> |
| 65 | + <version>4.8.2</version> |
| 66 | + <scope>test</scope> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>com.h2database</groupId> |
| 70 | + <artifactId>h2</artifactId> |
| 71 | + <version>1.4.196</version> |
| 72 | + <scope>test</scope> |
| 73 | + </dependency> |
| 74 | + </dependencies> |
| 75 | + <build> |
| 76 | + <finalName>photogallery</finalName> |
| 77 | + <plugins> |
| 78 | + <plugin> |
| 79 | + <groupId>org.apache.maven.plugins</groupId> |
| 80 | + <artifactId>maven-compiler-plugin</artifactId> |
| 81 | + <version>3.1</version> |
| 82 | + <configuration> |
| 83 | + <source>1.6</source> |
| 84 | + <target>1.6</target> |
| 85 | + <debug>true</debug> |
| 86 | + <optimize>false</optimize> |
| 87 | + <fork>true</fork> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + </plugins> |
| 91 | + </build> |
| 92 | +</project> |
0 commit comments