forked from dcbriccetti/talking-puffin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
55 lines (51 loc) · 1.77 KB
/
pom.xml
File metadata and controls
55 lines (51 loc) · 1.77 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
<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.talkingpuffin</groupId>
<artifactId>talking-puffin-base</artifactId>
<version>0.75</version>
<inceptionYear>2008</inceptionYear>
<properties>
<scala.version>2.7.4</scala.version>
</properties>
<name>TalkingPuffin Base POM</name>
<packaging>pom</packaging>
<url>http://TalkingPuffin.org/</url>
<organization>
<name>Dave Briccetti Software Consulting</name>
<url>http://davebsoft.com/</url>
</organization>
<description>TalkingPuffin Base POM</description>
<repositories>
<repository>
<id>scala-tools.org</id>
<name>Scala-Tools Maven2 Repository</name>
<url>http://scala-tools.org/repo-releases</url>
</repository>
<repository>
<id>lag.net</id>
<name>lag.net Repository</name>
<url>http://www.lag.net/repo</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>scala-tools.org</id>
<name>Scala-Tools Maven2 Repository</name>
<url>http://scala-tools.org/repo-releases</url>
</pluginRepository>
</pluginRepositories>
<reporting>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<modules>
<module>twitter-api</module>
<module>desktop</module>
<module>web-mvn</module>
</modules>
</project>