Skip to content

Commit 998b00f

Browse files
author
Justin Richer
committed
moved repo references to parent, added dependencies for webapp
1 parent 7386330 commit 998b00f

File tree

3 files changed

+85
-15
lines changed

3 files changed

+85
-15
lines changed

openid-connect-common/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -121,19 +121,4 @@
121121
</plugin>
122122
</plugins>
123123
</build>
124-
<repositories>
125-
<repository>
126-
<id>org.eclipse.persistence</id>
127-
<name>EclipseLink repository</name>
128-
<url>http://download.eclipse.org/rt/eclipselink/maven.repo</url>
129-
<snapshots>
130-
<enabled>true</enabled>
131-
</snapshots>
132-
</repository>
133-
<repository>
134-
<id>spring-milestone</id>
135-
<name>Spring Maven MILESTONE Repository</name>
136-
<url>http://maven.springframework.org/milestone</url>
137-
</repository>
138-
</repositories>
139124
</project>

openid-connect-server-webapp/pom.xml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,74 @@
6161
<artifactId>openid-connect-server</artifactId>
6262
<version>1.1.0-SNAPSHOT</version>
6363
</dependency>
64+
<dependency>
65+
<groupId>org.slf4j</groupId>
66+
<artifactId>jcl-over-slf4j</artifactId>
67+
<version>${org.slf4j-version}</version>
68+
<scope>runtime</scope>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.slf4j</groupId>
72+
<artifactId>slf4j-log4j12</artifactId>
73+
<version>${org.slf4j-version}</version>
74+
<scope>runtime</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>log4j</groupId>
78+
<artifactId>log4j</artifactId>
79+
<version>1.2.15</version>
80+
<exclusions>
81+
<exclusion>
82+
<groupId>javax.mail</groupId>
83+
<artifactId>mail</artifactId>
84+
</exclusion>
85+
<exclusion>
86+
<groupId>javax.jms</groupId>
87+
<artifactId>jms</artifactId>
88+
</exclusion>
89+
<exclusion>
90+
<groupId>com.sun.jdmk</groupId>
91+
<artifactId>jmxtools</artifactId>
92+
</exclusion>
93+
<exclusion>
94+
<groupId>com.sun.jmx</groupId>
95+
<artifactId>jmxri</artifactId>
96+
</exclusion>
97+
</exclusions>
98+
<scope>runtime</scope>
99+
</dependency>
100+
<dependency>
101+
<groupId>commons-dbcp</groupId>
102+
<artifactId>commons-dbcp</artifactId>
103+
<version>1.4</version>
104+
</dependency>
105+
<dependency>
106+
<groupId>org.hsqldb</groupId>
107+
<artifactId>hsqldb</artifactId>
108+
<version>2.2.9</version>
109+
</dependency>
110+
<dependency>
111+
<groupId>org.eclipse.persistence</groupId>
112+
<artifactId>org.eclipse.persistence.jpa</artifactId>
113+
<version>2.4.0</version>
114+
</dependency>
115+
<dependency>
116+
<groupId>org.springframework.security</groupId>
117+
<artifactId>spring-security-taglibs</artifactId>
118+
<version>${spring.security.version}</version>
119+
</dependency>
120+
<dependency>
121+
<groupId>org.springframework</groupId>
122+
<artifactId>spring-orm</artifactId>
123+
<version>${org.springframework-version}</version>
124+
<exclusions>
125+
<!-- Exclude Commons Logging in favor of SLF4j -->
126+
<exclusion>
127+
<groupId>commons-logging</groupId>
128+
<artifactId>commons-logging</artifactId>
129+
</exclusion>
130+
</exclusions>
131+
</dependency>
132+
64133
</dependencies>
65134
</project>

pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,4 +257,20 @@
257257

258258
</dependencies>
259259

260+
<repositories>
261+
<repository>
262+
<id>org.eclipse.persistence</id>
263+
<name>EclipseLink repository</name>
264+
<url>http://download.eclipse.org/rt/eclipselink/maven.repo</url>
265+
<snapshots>
266+
<enabled>true</enabled>
267+
</snapshots>
268+
</repository>
269+
<repository>
270+
<id>spring-milestone</id>
271+
<name>Spring Maven MILESTONE Repository</name>
272+
<url>http://maven.springframework.org/milestone</url>
273+
</repository>
274+
</repositories>
275+
260276
</project>

0 commit comments

Comments
 (0)