|
27 | 27 | <scope>test</scope> |
28 | 28 | </dependency> |
29 | 29 | <dependency> |
30 | | - <groupId>javax.servlet</groupId> |
31 | | - <artifactId>servlet-api</artifactId> |
32 | | - <version>2.5</version> |
33 | | - <scope>provided</scope> |
| 30 | + <groupId>javax.servlet</groupId> |
| 31 | + <artifactId>servlet-api</artifactId> |
| 32 | + <version>2.5</version> |
| 33 | + <scope>provided</scope> |
34 | 34 | </dependency> |
35 | 35 | <dependency> |
36 | 36 | <groupId>commons-fileupload</groupId> |
|
53 | 53 | <type>pom</type> |
54 | 54 | <version>2.10.1</version> |
55 | 55 | </dependency> |
56 | | - <dependency> |
57 | | - <groupId>javax.mail</groupId> |
58 | | - <artifactId>mail</artifactId> |
59 | | - <version>1.4.7</version> |
60 | | - </dependency> |
61 | | - <dependency> |
62 | | - <groupId>com.google.code.gson</groupId> |
63 | | - <artifactId>gson</artifactId> |
64 | | - <version>2.2.4</version> |
65 | | - </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>javax.mail</groupId> |
| 58 | + <artifactId>mail</artifactId> |
| 59 | + <version>1.4.7</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.google.code.gson</groupId> |
| 63 | + <artifactId>gson</artifactId> |
| 64 | + <version>2.2.4</version> |
| 65 | + </dependency> |
66 | 66 |
|
67 | | - <!-- for digest authentication --> |
68 | | - <dependency> |
69 | | - <groupId>commons-codec</groupId> |
70 | | - <artifactId>commons-codec</artifactId> |
71 | | - <version>1.9</version> |
72 | | - </dependency> |
73 | | - </dependencies> |
| 67 | + <!-- for digest authentication --> |
| 68 | + <dependency> |
| 69 | + <groupId>commons-codec</groupId> |
| 70 | + <artifactId>commons-codec</artifactId> |
| 71 | + <version>1.9</version> |
| 72 | + </dependency> |
| 73 | + |
| 74 | + <!-- Logger --> |
| 75 | + <dependency> |
| 76 | + <groupId>log4j</groupId> |
| 77 | + <artifactId>log4j</artifactId> |
| 78 | + <version>1.2.16</version> |
| 79 | + </dependency> |
| 80 | + |
| 81 | + <!-- Javax web services with jersey --> |
| 82 | + <dependency> |
| 83 | + <groupId>org.glassfish.jersey.containers</groupId> |
| 84 | + <artifactId>jersey-container-servlet</artifactId> |
| 85 | + <version>2.12</version> |
| 86 | + </dependency> |
| 87 | + |
| 88 | + </dependencies> |
74 | 89 |
|
75 | 90 | <build> |
76 | 91 | <finalName>generator</finalName> |
|
98 | 113 | <!-- Maven Tomcat Plugin --> |
99 | 114 | <plugin> |
100 | 115 | <version>1.1</version> |
101 | | - <groupId>org.codehaus.mojo</groupId> |
102 | | - <artifactId>tomcat-maven-plugin</artifactId> |
103 | | - <configuration> |
104 | | - <url>http://127.0.0.1:8080/manager/text</url> |
105 | | - <server>tomcat</server> |
| 116 | + <groupId>org.codehaus.mojo</groupId> |
| 117 | + <artifactId>tomcat-maven-plugin</artifactId> |
| 118 | + <configuration> |
| 119 | + <url>http://127.0.0.1:8080/manager/text</url> |
| 120 | + <server>tomcat</server> |
106 | 121 | <path>/${project.build.finalName}</path> |
107 | 122 | </configuration> |
108 | 123 | </plugin> |
|
119 | 134 | <artifactId>maven-antrun-plugin</artifactId> |
120 | 135 | <configuration> |
121 | 136 | <tasks> |
122 | | - <echo |
123 | | - message="Creating debian package"> |
| 137 | + <echo message="Creating debian package"> |
124 | 138 | </echo> |
125 | | - <exec |
126 | | - dir="${basedir}/deb-package" |
127 | | - executable="${basedir}/deb-package/build_debpkg.sh" |
| 139 | + <exec dir="${basedir}/deb-package" executable="${basedir}/deb-package/build_debpkg.sh" |
128 | 140 | failonerror="true"> |
129 | 141 | </exec> |
130 | 142 | </tasks> |
|
0 commit comments