|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 | <modelVersion>4.0.0</modelVersion> |
5 | 6 | <parent> |
6 | 7 | <groupId>org.springframework.boot</groupId> |
7 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | 9 | <version>2.6.0</version> |
9 | | - <relativePath/> |
| 10 | + <relativePath /> |
10 | 11 | </parent> |
11 | 12 | <groupId>net.laffyco.java-matching-engine</groupId> |
12 | 13 | <artifactId>rest-api</artifactId> |
|
16 | 17 | <properties> |
17 | 18 | <java.version>1.8</java.version> |
18 | 19 | </properties> |
19 | | - |
20 | | - <profiles> |
21 | | - <profile> |
22 | | - <id>Repos</id> |
23 | | - <repositories> |
24 | | - <repository> |
25 | | - <id>central</id> |
26 | | - <url>https://repo1.maven.org/maven2</url> |
27 | | - <releases><enabled>true</enabled></releases> |
28 | | - <snapshots><enabled>true</enabled></snapshots> |
29 | | - </repository> |
30 | | - <repository> |
31 | | - <id>github</id> |
32 | | - <name>GitHub OWNER Apache Maven Packages</name> |
33 | | - <url>https://maven.pkg.github.com/Laffini/Java-Matching-Engine-Core</url> |
34 | | - </repository> |
35 | | - </repositories> |
36 | | - </profile> |
37 | | - </profiles> |
38 | | - |
| 20 | + |
| 21 | + <repositories> |
| 22 | + <repository> |
| 23 | + <id>central</id> |
| 24 | + <url>https://repo1.maven.org/maven2</url> |
| 25 | + <releases> |
| 26 | + <enabled>true</enabled> |
| 27 | + </releases> |
| 28 | + <snapshots> |
| 29 | + <enabled>true</enabled> |
| 30 | + </snapshots> |
| 31 | + </repository> |
| 32 | + <repository> |
| 33 | + <id>github</id> |
| 34 | + <name>GitHub OWNER Apache Maven Packages</name> |
| 35 | + <url>https://maven.pkg.github.com/Laffini/Java-Matching-Engine-Core</url> |
| 36 | + <releases> |
| 37 | + <enabled>true</enabled> |
| 38 | + </releases> |
| 39 | + <snapshots> |
| 40 | + <enabled>true</enabled> |
| 41 | + </snapshots> |
| 42 | + </repository> |
| 43 | + </repositories> |
| 44 | + |
| 45 | + |
39 | 46 | <dependencies> |
40 | | - <dependency> |
41 | | - <groupId>net.laffyco.java-matching-engine</groupId> |
42 | | - <artifactId>core</artifactId> |
43 | | - <version>0.0.1</version> |
44 | | - <scope>compile</scope> |
45 | | - </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>net.laffyco.java-matching-engine</groupId> |
| 49 | + <artifactId>core</artifactId> |
| 50 | + <version>0.0.1-SNAPSHOT</version> |
| 51 | + <scope>compile</scope> |
| 52 | + </dependency> |
46 | 53 | <dependency> |
47 | 54 | <groupId>org.springframework.boot</groupId> |
48 | 55 | <artifactId>spring-boot-starter-web</artifactId> |
|
68 | 75 | </plugin> |
69 | 76 | </plugins> |
70 | 77 | </build> |
71 | | - |
| 78 | + |
72 | 79 | <distributionManagement> |
73 | | - <repository> |
74 | | - <id>github</id> |
75 | | - <name>GitHub Laffini Apache Maven Packages</name> |
76 | | - <url>https://maven.pkg.github.com/Laffini/Java-Matching-Engine-REST-API</url> |
77 | | - </repository> |
78 | | - </distributionManagement> |
| 80 | + <repository> |
| 81 | + <id>github</id> |
| 82 | + <name>GitHub Laffini Apache Maven Packages</name> |
| 83 | + <url>https://maven.pkg.github.com/Laffini/Java-Matching-Engine-REST-API</url> |
| 84 | + </repository> |
| 85 | + </distributionManagement> |
79 | 86 |
|
80 | 87 | </project> |
0 commit comments