Skip to content

Commit a344946

Browse files
committed
Updated POM to get dependences from maven repositories.
1 parent 1206aac commit a344946

File tree

1 file changed

+37
-15
lines changed

1 file changed

+37
-15
lines changed

pom.xml

Lines changed: 37 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,59 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>edu.pitt.isg</groupId>
66
<artifactId>digital-commons</artifactId>
77
<name>Digital Commons</name>
88
<description>MIDAS Digital Commons</description>
99
<packaging>war</packaging>
10-
<version>0.0.2</version>
10+
<version>1.0</version>
1111
<parent>
1212
<groupId>org.springframework.boot</groupId>
1313
<artifactId>spring-boot-starter-parent</artifactId>
1414
<version>1.4.3.RELEASE</version>
1515
</parent>
1616

1717
<repositories>
18-
<repository>
19-
<id>oss-jfrog-artifactory</id>
20-
<name>oss-jfrog-artifactory-releases</name>
21-
<url>http://oss.jfrog.org/artifactory/oss-release-local</url>
22-
</repository>
18+
<repository>
19+
<id>oss-jfrog-artifactory</id>
20+
<name>oss-jfrog-artifactory-releases</name>
21+
<url>http://oss.jfrog.org/artifactory/oss-release-local</url>
22+
</repository>
23+
24+
<repository>
25+
<id>mdc-xsd-and-types</id>
26+
<url>https://raw.githubusercontent.com/midas-isg/mdc-xsd-and-types/1.0-repo</url>
27+
<snapshots>
28+
<enabled>true</enabled>
29+
<updatePolicy>always</updatePolicy>
30+
</snapshots>
31+
</repository>
32+
33+
<repository>
34+
<id>object-serializer-mvn-repo</id>
35+
<url>https://raw.githubusercontent.com/midas-isg/object-serializer/1.0-repo</url>
36+
<snapshots>
37+
<enabled>true</enabled>
38+
<updatePolicy>always</updatePolicy>
39+
</snapshots>
40+
</repository>
41+
42+
<repository>
43+
<id>xsd-forms</id>
44+
<url>https://raw.githubusercontent.com/midas-isg/xsd-forms/1.0-mvn-repo</url>
45+
<snapshots>
46+
<enabled>true</enabled>
47+
<updatePolicy>always</updatePolicy>
48+
</snapshots>
49+
</repository>
2350
</repositories>
2451

2552
<properties>
2653
<java.version>1.8</java.version>
54+
<github.global.server>github</github.global.server>
2755
</properties>
2856

29-
3057
<dependencies>
3158
<!-- Auth0 -->
3259
<dependency>
@@ -118,14 +145,10 @@
118145
</dependency>
119146
<dependency>
120147
<groupId>org.ajar</groupId>
121-
122148
<artifactId>swagger-spring-mvc-ui</artifactId>
123149
<version>0.3</version>
124-
125-
126150
</dependency>
127151

128-
129152
<dependency>
130153
<groupId>commons-io</groupId>
131154
<artifactId>commons-io</artifactId>
@@ -137,8 +160,9 @@
137160
<artifactId>jsoup</artifactId>
138161
<version>1.8.3</version>
139162
</dependency>
140-
141163
</dependencies>
164+
165+
142166
<build>
143167
<plugins>
144168
<plugin>
@@ -156,9 +180,7 @@
156180
<includes>
157181
<include>**/*</include>
158182
</includes>
159-
160183
</resource>
161184
</resources>
162-
163185
</build>
164186
</project>

0 commit comments

Comments
 (0)