forked from mirah/mirah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
55 lines (47 loc) · 1.53 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
<?xml version="1.0"?>
<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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.mirah</groupId>
<artifactId>shared</artifactId>
<packaging>pom</packaging>
<version>0.0.8-SNAPSHOT</version>
<name>Mirah Shared</name>
<url>http://mirah.org</url>
<description>The Mirah Programming Language</description>
<issueManagement>
<system>Github issues</system>
<url>https://github.com/mirah/mirah/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/mirah/mirah.git</connection>
<developerConnection>scm:git:[email protected]:mirah/mirah.git</developerConnection>
<url>http://github.com/mirah/mirah</url>
</scm>
<licenses>
<license>
<name>Apache License, Version 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>headius</id>
<name>Charles Nutter</name>
<email>[email protected]</email>
</developer>
<!-- TODO: Add other developers -->
</developers>
<modules>
<module>maven/mirah</module>
<module>maven/mirah-complete</module>
</modules>
<build>
<defaultGoal>install</defaultGoal>
</build>
</project>