-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
80 lines (64 loc) · 2.22 KB
/
pom.xml
File metadata and controls
80 lines (64 loc) · 2.22 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
<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>com.optimasc.pluginsys</groupId>
<artifactId>plugin-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<licenses>
<license>
<!-- The license identifier, as defined by SPDX -->
<name>Apache-2.0</name>
</license>
</licenses>
<!-- List of direct developers for this project -->
<developers>
<developer>
<name>Carl Eric Codere</name>
<organization>Optimas SC Inc.</organization>
<roles>
<role>creator</role>
<role>developer</role>
</roles>
</developer>
</developers>
<!-- List of contributors to this project -->
<contributors>
</contributors>
<!-- List of organization associated with this project -->
<organization>
<name>Optima SC Inc.</name>
<url>http://www.optimasc.com</url>
</organization>
<!-- The repository locations. Private values are allowed. -->
<scm>
<connection>https://github.com/optimasc/PluginSystem.git</connection>
<developerConnection>scm:git:ssh://github.com:optimasc/PluginSystem.git</developerConnection>
<url>https://github.com/optimasc/PluginSystem/tree/main</url>
</scm>
<!-- The location where the data will be distributed. Keep as is for Sonatype Maven central -->
<!-- The location where the data will be distributed -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>snapshots</id>
<name>OSSRH Public snapshot repository</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<modules>
<module>plugins-spi</module>
<module>plugins-utils</module>
</modules>
</project>