forked from wolfc/jboss-switchboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
128 lines (103 loc) · 4.04 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
124
125
126
127
128
<?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">
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.switchboard</groupId>
<artifactId>jboss-switchboard-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0-alpha-6-SNAPSHOT</version>
<name>JBoss SwitchBoard Parent project</name>
<url>http://www.jboss.org</url>
<description>
Parent/Aggregator project for JBoss SwitchBoard
</description>
<!-- SCM -->
<scm>
<connection>scm:git:[email protected]:jaikiran/jboss-switchboard.git</connection>
<developerConnection>scm:git:[email protected]:jaikiran/jboss-switchboard.git</developerConnection>
<url>http://github.com/jaikiran/jboss-switchboard</url>
</scm>
<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>jboss-snapshots-repository</id>
<name>JBoss Snapshots Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<version.jboss.logging>3.0.0.Beta4</version.jboss.logging>
<version.junit>4.8.1</version.junit>
<version.mockito>1.8.4</version.mockito>
<version.reloaded.naming>0.2.0</version.reloaded.naming>
</properties>
<modules>
<module>spi</module>
<module>impl</module>
<module>javaee</module>
<module>jbmeta-javaee</module>
<module>mc-spi</module>
<module>mc-impl</module>
</modules>
<!-- Build -->
<build>
<plugins>
<!-- Compiler JDK6 -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${version.jboss.logging}</version>
</dependency>
<!-- Reloaded Naming -->
<dependency>
<groupId>org.jboss.reloaded.naming</groupId>
<artifactId>jboss-reloaded-naming-spi</artifactId>
<version>${version.reloaded.naming}</version>
</dependency>
<dependency>
<groupId>org.jboss.reloaded.naming</groupId>
<artifactId>jboss-reloaded-naming-deployers</artifactId>
<version>${version.reloaded.naming}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>${version.junit}</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${version.mockito}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>