forked from WSO2Telco/component-ids
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
130 lines (117 loc) · 5.01 KB
/
pom.xml
File metadata and controls
130 lines (117 loc) · 5.01 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2015-2016, WSO2.Telco Inc. (http://www.wso2telco.com)
All Rights Reserved. WSO2.Telco Inc. licences this file to you under the
Apache License, Version 2.0 (the "License"); you may not use this file except
in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
the specific language governing permissions and limitations under the License.
folk test M -->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--groupId>org.wso2.carbon.identity</groupId> <artifactId>carbon-identity</artifactId>
<packaging>pom</packaging> <version>5.0.8-SNAPSHOT</version> <name>WSO2 Carbon
- Platform Aggregator Pom</name> <url>http://wso2.org</url -->
<parent>
<groupId>org.wso2</groupId>
<artifactId>wso2</artifactId>
<version>1</version>
</parent>
<groupId>com.wso2telco.ids</groupId>
<artifactId>component-ids</artifactId>
<packaging>pom</packaging>
<version>2.0.13</version>
<name>WSO2Telco Core - Component</name>
<description>WSO2Telco Core Aggregate Pom</description>
<url>http://wso2telco.com</url>
<developers>
<developer>
<name>WSO2Telco</name>
<email>core-product-tech@wso2telco.com</email>
</developer>
</developers>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<distributionManagement>
<snapshotRepository>
<id>wso2Telco.snapshots</id>
<name>Snapshot repo</name>
<url>http://maven.wso2telco.com/nexus/content/repositories/snapshots</url>
</snapshotRepository>
<!-- Publish the versioned releases here -->
<repository>
<id>wso2telco.releases</id>
<name>release repo</name>
<url>http://maven.wso2telco.com/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
<modules>
<module>parent</module>
<module>components/url-shorten</module>
<module>components/user-claim-retriever</module>
<module>components/authenticate-selector</module>
<module>components/gsma-authenticators</module>
<module>components/openid-token-builder</module>
<module>components/operator-proxy-service</module>
<module>components/user-registration</module>
<module>components/sign</module>
<module>components/session-updater</module>
<module>components/portal</module>
<module>components/dashboard</module>
<module>components/authentication-endpoint</module>
<module>components/ids-data-publisher</module>
<module>features</module>
</modules>
<scm>
<url>https://github.com/WSO2Telco/component-ids.git</url>
<developerConnection>scm:git:https://github.com/WSO2Telco/component-ids.git</developerConnection>
<connection>scm:git:https://github.com/WSO2Telco/component-ids.git</connection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<preparationGoals>clean install</preparationGoals>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>docs</id>
<phase>compile</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>