Skip to content

Commit 1b4baa9

Browse files
committed
Removed extra maven deps
1 parent 7bbfa76 commit 1b4baa9

1 file changed

Lines changed: 117 additions & 143 deletions

File tree

pom.xml

Lines changed: 117 additions & 143 deletions
Original file line numberDiff line numberDiff line change
@@ -1,147 +1,121 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.teachingkidsprogramming</groupId>
5-
<artifactId>TeachingKidsProgramming</artifactId>
6-
<version>0.0.3-SNAPSHOT</version>
7-
<packaging>jar</packaging>
8-
<name>${project.groupId}:${project.artifactId}</name>
9-
<description>A proven library of high-quality programming courseware for kids. TKP is a designated project of the US non-profit (501c3) the MONA Foundation. The mission of the MONA Foundation is to &quot;support grassroots educational initiatives that educate everyone—including girls.&quot;</description>
10-
<url>http://teachingkidsprogramming.org/</url>
11-
<licenses>
12-
<license>
13-
<name>The Apache License, Version 2.0</name>
14-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15-
</license>
16-
</licenses>
17-
<developers>
18-
<developer>
19-
<name>Jim Counts</name>
20-
<email>jamesrcounts@outlook.com</email>
21-
<organization>Teaching Kids Programming</organization>
22-
<organizationUrl>http://teachingkidsprogramming.org/</organizationUrl>
23-
</developer>
24-
<developer>
25-
<name>Lynn Langit</name>
26-
<email>lynn@teachingkidsprogramming.org</email>
27-
<organization>Teaching Kids Programming</organization>
28-
<organizationUrl>http://teachingkidsprogramming.org/</organizationUrl>
29-
</developer>
30-
</developers>
31-
<scm>
32-
<connection>scm:git:git@github.com:TeachingKidsProgramming/TeachingKidsProgramming.Source.Java.git</connection>
33-
<developerConnection>scm:git:git@github.com:TeachingKidsProgramming/TeachingKidsProgramming.Source.Java.git</developerConnection>
34-
<url>git@github.com:TeachingKidsProgramming/TeachingKidsProgramming.Source.Java.git</url>
35-
</scm>
36-
<dependencies>
37-
<dependency>
38-
<groupId>junit</groupId>
39-
<artifactId>junit</artifactId>
40-
<version>4.12</version>
41-
</dependency>
42-
<dependency>
43-
<groupId>javax.servlet</groupId>
44-
<artifactId>javax.servlet-api</artifactId>
45-
<version>3.1.0</version>
46-
</dependency>
47-
<dependency>
48-
<groupId>velocity</groupId>
49-
<artifactId>velocity</artifactId>
50-
<version>1.4</version>
51-
</dependency>
52-
<dependency>
53-
<groupId>commons-collections</groupId>
54-
<artifactId>commons-collections</artifactId>
55-
<version>3.2.1</version>
56-
</dependency>
57-
<dependency>
58-
<groupId>commons-logging</groupId>
59-
<artifactId>commons-logging</artifactId>
60-
<version>1.0.3</version>
61-
</dependency>
62-
<dependency>
63-
<groupId>sshtools</groupId>
64-
<artifactId>j2ssh-core</artifactId>
65-
<version>0.2.9</version>
66-
</dependency>
67-
<dependency>
68-
<groupId>commons-httpclient</groupId>
69-
<artifactId>commons-httpclient</artifactId>
70-
<version>2.0-rc3</version>
71-
</dependency>
72-
<dependency>
73-
<groupId>commons-net</groupId>
74-
<artifactId>commons-net</artifactId>
75-
<version>1.1.0</version>
76-
</dependency>
77-
<dependency>
78-
<groupId>org.mockito</groupId>
79-
<artifactId>mockito-all</artifactId>
80-
<version>1.8.5</version>
81-
</dependency>
82-
<dependency>
83-
<groupId>com.sun.mail</groupId>
84-
<artifactId>javax.mail</artifactId>
85-
<version>1.4.4</version>
86-
</dependency>
87-
<dependency>
88-
<groupId>log4j</groupId>
89-
<artifactId>log4j</artifactId>
90-
<version>1.2.9</version>
91-
</dependency>
92-
</dependencies>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.teachingkidsprogramming</groupId>
5+
<artifactId>TeachingKidsProgramming</artifactId>
6+
<version>0.0.3-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<name>${project.groupId}:${project.artifactId}</name>
9+
<description>A proven library of high-quality programming courseware for kids. TKP is a designated project of the US
10+
non-profit (501c3) the MONA Foundation. The mission of the MONA Foundation is to &quot;support grassroots
11+
educational initiatives that educate everyone—including girls.&quot;</description>
12+
<url>http://teachingkidsprogramming.org/</url>
13+
<licenses>
14+
<license>
15+
<name>The Apache License, Version 2.0</name>
16+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17+
</license>
18+
</licenses>
19+
<developers>
20+
<developer>
21+
<name>Jim Counts</name>
22+
<email>jamesrcounts@outlook.com</email>
23+
<organization>Teaching Kids Programming</organization>
24+
<organizationUrl>http://teachingkidsprogramming.org/</organizationUrl>
25+
</developer>
26+
<developer>
27+
<name>Lynn Langit</name>
28+
<email>lynn@teachingkidsprogramming.org</email>
29+
<organization>Teaching Kids Programming</organization>
30+
<organizationUrl>http://teachingkidsprogramming.org/</organizationUrl>
31+
</developer>
32+
</developers>
33+
<scm>
34+
<connection>scm:git:git@github.com:TeachingKidsProgramming/TeachingKidsProgramming.Source.Java.git</connection>
35+
<developerConnection>scm:git:git@github.com:TeachingKidsProgramming/TeachingKidsProgramming.Source.Java.git
36+
</developerConnection>
37+
<url>git@github.com:TeachingKidsProgramming/TeachingKidsProgramming.Source.Java.git</url>
38+
</scm>
39+
<dependencies>
40+
<dependency>
41+
<groupId>junit</groupId>
42+
<artifactId>junit</artifactId>
43+
<version>4.12</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>javax.servlet</groupId>
47+
<artifactId>javax.servlet-api</artifactId>
48+
<version>3.1.0</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>velocity</groupId>
52+
<artifactId>velocity</artifactId>
53+
<version>1.4</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>commons-collections</groupId>
57+
<artifactId>commons-collections</artifactId>
58+
<version>3.2.1</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>log4j</groupId>
62+
<artifactId>log4j</artifactId>
63+
<version>1.2.9</version>
64+
</dependency>
65+
</dependencies>
9366

94-
<build>
95-
<plugins>
96-
<plugin>
97-
<groupId>org.apache.maven.plugins</groupId>
98-
<artifactId>maven-javadoc-plugin</artifactId>
99-
<version>2.10.1</version>
100-
</plugin>
101-
<plugin>
102-
<groupId>org.apache.maven.plugins</groupId>
103-
<artifactId>maven-compiler-plugin</artifactId>
104-
<version>3.2</version>
105-
<configuration>
106-
<source>1.7</source>
107-
<target>1.7</target>
108-
<encoding>ISO-8859-1</encoding><compilerArgument>-Xlint:unchecked</compilerArgument>
109-
</configuration>
110-
</plugin>
111-
<plugin>
112-
<groupId>org.apache.maven.plugins</groupId>
113-
<artifactId>maven-repository-plugin</artifactId>
114-
<version>2.4</version>
115-
</plugin>
116-
<plugin>
117-
<groupId>org.apache.maven.plugins</groupId>
118-
<artifactId>maven-gpg-plugin</artifactId>
119-
<version>1.6</version>
120-
<executions>
121-
<execution>
122-
<id>sign-artifacts</id>
123-
<phase>verify</phase>
124-
<goals>
125-
<goal>sign</goal>
126-
</goals>
127-
</execution>
128-
</executions>
129-
</plugin>
130-
</plugins>
131-
</build>
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-javadoc-plugin</artifactId>
72+
<version>2.10.1</version>
73+
</plugin>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-compiler-plugin</artifactId>
77+
<version>3.2</version>
78+
<configuration>
79+
<source>1.7</source>
80+
<target>1.7</target>
81+
<encoding>ISO-8859-1</encoding>
82+
<compilerArgument>-Xlint:unchecked</compilerArgument>
83+
</configuration>
84+
</plugin>
85+
<plugin>
86+
<groupId>org.apache.maven.plugins</groupId>
87+
<artifactId>maven-repository-plugin</artifactId>
88+
<version>2.4</version>
89+
</plugin>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-gpg-plugin</artifactId>
93+
<version>1.6</version>
94+
<executions>
95+
<execution>
96+
<id>sign-artifacts</id>
97+
<phase>verify</phase>
98+
<goals>
99+
<goal>sign</goal>
100+
</goals>
101+
</execution>
102+
</executions>
103+
</plugin>
104+
</plugins>
105+
</build>
132106

133-
<organization>
134-
<url>http://teachingkidsprogramming.org/</url>
135-
<name>Teaching Kids Programming</name>
136-
</organization>
137-
<properties>
138-
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
139-
</properties>
140-
<distributionManagement>
141-
<repository>
142-
<id>sonatype</id>
143-
<!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url> -->
144-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
145-
</repository>
146-
</distributionManagement>
107+
<organization>
108+
<url>http://teachingkidsprogramming.org/</url>
109+
<name>Teaching Kids Programming</name>
110+
</organization>
111+
<properties>
112+
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
113+
</properties>
114+
<distributionManagement>
115+
<repository>
116+
<id>sonatype</id>
117+
<!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url> -->
118+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
119+
</repository>
120+
</distributionManagement>
147121
</project>

0 commit comments

Comments
 (0)