forked from OthmanMoukhli/WSO2-Training-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
77 lines (77 loc) · 2.39 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>WSO2-MS-Training</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>WSO2-MS-Training</name>
<description>WSO2-MS-Training</description>
<modules>
<module>WSO2-MS-TrainingRegistryResources</module>
<module>WSO2-MS-TrainingDataSource</module>
<module>WSO2-MS-TrainingDataService</module>
<module>WSO2-MS-TrainingConfigs</module>
<module>WSO2-MS-TrainingCompositeExporter</module>
</modules>
<scm>
<connection>scm:git:https://github.com/username/repository.git</connection>
<developerConnection>scm:git:https://github.com/username/repository.git</developerConnection>
<url>https://github.com/username/repository.git</url>
</scm>
<distributionManagement>
<repository>
<id>release</id>
<name>Release Distribution Repository</name>
<url>https://example.com/nexus/repository</url>
</repository>
</distributionManagement>
<properties>
<project.scm.id>integration-project</project.scm.id>
<project.runtime.version>4.2.0</project.runtime.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration />
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration />
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<projectnatures>
<projectnature>org.wso2.developerstudio.eclipse.mavenmultimodule.project.nature</projectnature>
</projectnatures>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>Solution</id>
<build />
</profile>
<profile>
<id>Docker</id>
<build />
</profile>
<profile>
<id>Kubernetes</id>
<build />
</profile>
<profile>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build />
</profile>
</profiles>
</project>