forked from otavanopisto/pyramus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
123 lines (113 loc) · 3.65 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
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
<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>fi.otavanopisto.pyramus</groupId>
<artifactId>parent</artifactId>
<version>0.7.78-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Pyramus Parent POM</name>
<url>https://github.com/otavanopisto/pyramus/</url>
<licenses>
<license>
<name>GNU LGPL v3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/otavanopisto/pyramus/issues</url>
</issueManagement>
<scm>
<developerConnection>scm:git:[email protected]:otavanopisto/pyramus.git</developerConnection>
<url>[email protected]:otavanopisto/pyramus.git</url>
<connection>scm:git:[email protected]:otavanopisto/pyramus.git</connection>
<tag>HEAD</tag>
</scm>
<organization>
<name>Internetix / Otava Folk High School</name>
<url>http://www.otavanopisto.fi</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<modules>
<module>bom</module>
<module>common</module>
<module>framework</module>
<module>googleoauth-plugin</module>
<module>testauth-plugin</module>
<module>persistence</module>
<module>plugin-core</module>
<module>rest-model</module>
<module>rest</module>
<module>pyramus</module>
<module>reports</module>
<module>webservices-plugin</module>
<module>smvcj</module>
<module>webhooks</module>
<module>muikku-plugin</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>fi.otavanopisto.pyramus</groupId>
<artifactId>bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>otavanopisto-releases</id>
<name>Otavan Opisto Releases</name>
<url>http://maven.otavanopisto.fi:7070/nexus/content/repositories/releases</url>
</repository>
<repository>
<id>otavanopisto-snapshots</id>
<name>Otavan Opisto Snapshots</name>
<url>http://maven.otavanopisto.fi:7070/nexus/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>repository.jboss.org-public</id>
<name>JBoss repository</name>
<url>https://repository.jboss.org/nexus/content/groups/public</url>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>otavanopisto-snapshots</id>
<name>Otavan Opisto Snapshots</name>
<url>http://maven.otavanopisto.fi:7070/nexus/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>otavanopisto-releases</id>
<name>Otavan Opisto Releases</name>
<url>http://maven.otavanopisto.fi:7070/nexus/content/repositories/releases</url>
</repository>
</distributionManagement>
</project>