Skip to content
This repository was archived by the owner on Apr 22, 2022. It is now read-only.

Commit 1bbbb1a

Browse files
committed
may be some errors to fix
1 parent 3cce866 commit 1bbbb1a

File tree

10 files changed

+1889
-841
lines changed

10 files changed

+1889
-841
lines changed

pom.xml

Lines changed: 43 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
<scope>test</scope>
2828
</dependency>
2929
<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>
3434
</dependency>
3535
<dependency>
3636
<groupId>commons-fileupload</groupId>
@@ -53,24 +53,39 @@
5353
<type>pom</type>
5454
<version>2.10.1</version>
5555
</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>
6666

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>
7489

7590
<build>
7691
<finalName>generator</finalName>
@@ -98,11 +113,11 @@
98113
<!-- Maven Tomcat Plugin -->
99114
<plugin>
100115
<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>
106121
<path>/${project.build.finalName}</path>
107122
</configuration>
108123
</plugin>
@@ -119,12 +134,9 @@
119134
<artifactId>maven-antrun-plugin</artifactId>
120135
<configuration>
121136
<tasks>
122-
<echo
123-
message="Creating debian package">
137+
<echo message="Creating debian package">
124138
</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"
128140
failonerror="true">
129141
</exec>
130142
</tasks>

0 commit comments

Comments
 (0)