-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
59 lines (50 loc) · 2.03 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.worscipe.bright</groupId>
<artifactId>parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Bright</name>
<description>An app for sourcing the brightest ideas</description>
<!-- Mvn Best Practice: Avoid putting properties here for modules to inherit -->
<!-- Maven best practices REF: https://www.javacodegeeks.com/2012/06/maven-best-practices.html -->
<properties>
<!-- boot and cloud dependencies are tighly coupled -->
<spring.boot.version>2.5.4</spring.boot.version>
<spring-cloud.version>2020.0.3</spring-cloud.version>
<bright.common.version>0.0.1-SNAPSHOT</bright.common.version>
</properties>
<repositories>
<repository>
<id>github</id>
<name>GitHub Mbd06b Apache Maven Packages</name>
<url>https://maven.pkg.github.com/Mbd06b/bright</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>github</id>
<name>Releases</name>
<url>https://maven.pkg.github.com/Mbd06b/bright</url>
</repository>
<snapshotRepository>
<id>github</id>
<name>Snapshot</name>
<url>https://maven.pkg.github.com/Mbd06b/bright</url>
</snapshotRepository>
</distributionManagement>
<!-- https://dzone.com/articles/building-a-web-app-using-spring-boot-angular-6-and -->
<modules>
<module>common</module>
<module>config-service</module>
<module>discovery-service</module>
<module>proxy-service</module>
<module>gateway-service</module>
<module>users</module>
<module>ideas</module>
<module>elections</module>
<module>newspaper-api</module>
<module>bright-webapp</module>
</modules>
</project>