Skip to content

Commit 9d12df7

Browse files
authored
Add files via upload
0 parents  commit 9d12df7

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

maven-demo/pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.demo</groupId>
4+
<artifactId>maven-demo</artifactId>
5+
<version>0.0.1-SNAPSHOT</version>
6+
<dependencies>
7+
8+
<dependency>
9+
<groupId>org.springframework.security</groupId>
10+
<artifactId>spring-security-core</artifactId>
11+
<version>5.4.7</version>
12+
</dependency>
13+
<!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
14+
<dependency>
15+
<groupId>joda-time</groupId>
16+
<artifactId>joda-time</artifactId>
17+
<version>2.9.8</version>
18+
</dependency>
19+
20+
<dependency>
21+
<groupId>commons-collections</groupId>
22+
<artifactId>commons-collections</artifactId>
23+
<version>3.2.2</version>
24+
</dependency>
25+
26+
27+
<dependency>
28+
<groupId>org.springframework</groupId>
29+
<artifactId>spring-test</artifactId>
30+
<version>5.2.1.RELEASE</version>
31+
<scope>test</scope>
32+
</dependency>
33+
34+
<dependency>
35+
<groupId>org.apache.commons</groupId>
36+
<artifactId>commons-collections4</artifactId>
37+
<version>4.2</version>
38+
</dependency>
39+
40+
41+
42+
</dependencies>
43+
</project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.demo;
2+
3+
public class App {
4+
public String test() {
5+
return "Successfull";
6+
}
7+
}
358 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)