-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpom.xml
More file actions
121 lines (121 loc) · 5.04 KB
/
pom.xml
File metadata and controls
121 lines (121 loc) · 5.04 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
<?xml version="1.0" encoding="UTF-8"?>
<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.phonytive.astive</groupId>
<artifactId>astive</artifactId>
<packaging>pom</packaging>
<version>1.0.0-M2</version>
<name>Astive Toolkit</name>
<url>http://astive.phonytive.com</url>
<pluginRepositories>
<pluginRepository>
<id>mc-release</id>
<name>Local Maven repository of releases</name>
<url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<inherited>false</inherited>
<groupId>com.google.code.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<header>${basedir}/src/main/resources/license-template.txt</header>
<failIfMissing>true</failIfMissing>
<aggregate>true</aggregate>
<properties>
<owner>PhonyTive LLC</owner>
<year>2012</year>
<email>[email protected]</email>
</properties>
<includes>
<include>**/*.java</include>
</includes>
<excludes>
<exclude>astive-archetype/**</exclude>
</excludes>
<headerDefinitions>
<headerDefinition>${basedir}/src/main/resources/license-headerstyle.xml</headerDefinition>
</headerDefinitions>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>verify</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<version>2.3.2</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jalopy-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<configuration>
<convention>src/main/resources/jalopy.xml</convention>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<!--There is a bug with the fileMode and directoryMode for
the zip format in the previous versions-->
<version>2.2-beta-3</version>
<configuration>
<descriptors>
<descriptor>src/main/resources/sdk-assembly.xml</descriptor>
<descriptor>src/main/resources/server-assembly.xml</descriptor>
</descriptors>
<finalName>astive</finalName>
<outputDirectory>dist</outputDirectory>
<workDirectory>target/assembly/astive-${project.version}</workDirectory>
<!--<tasks>
<mkdir dir="apps"/>
</tasks>-->
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.12</version>
<type>jar</type>
</dependency>
</dependencies>
<description>Astive is a toolkit and server for Java that provides an
extensible architecture for developing, maintaining, and deploying
telephony applications.
</description>
<modules>
<module>astive-commons</module>
<module>api</module>
<module>server</module>
<module>astive-archetype</module>
<!--<module>astbeans</module>-->
<!--<module>astive-ia</module>-->
</modules>
</project>