blob: 522c22ef98071fb56f09f07341041a43421d164a (
plain)
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
129
130
131
132
133
134
135
136
137
138
139
|
<?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.amazon.carbonado</groupId>
<artifactId>carbonado-test-suite</artifactId>
<packaging>jar</packaging>
<name>CarbonadoTestSuite</name>
<version>1.1</version>
<description>
Test suite for Carbonado.
</description>
<url>http://carbonado.sourceforge.net/</url>
<inceptionYear>2006</inceptionYear>
<organization>
<name>Amazon Technologies, Inc.</name>
<url>http://sourceforge.net/projects/carbonado/</url>
</organization>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:svn:https://svn.sourceforge.net/svnroot/carbonado/trunk/CarbonadoTestSuite</connection>
<developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/carbonado/trunk/CarbonadoTestSuite</developerConnection>
<url>http://svn.sourceforge.net/viewvc/carbonado/trunk/CarbonadoTestSuite/</url>
</scm>
<issueManagement>
<url>http://sourceforge.net/tracker/?group_id=171277</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Carbonado Interest list</name>
<subscribe>http://sourceforge.net/mail/?group_id=171277</subscribe>
<unsubscribe>http://sourceforge.net/mail/?group_id=171277</unsubscribe>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>Brian S O'Neill</name>
<id>broneill</id>
<email>broneill@users.sourceforge.net</email>
<organization>Amazon Technologies, Inc.</organization>
<roles>
<role>Project Lead</role>
</roles>
</developer>
<developer>
<name>Don Schneider</name>
<id>dondo_seattle</id>
<email>dondo_seattle@users.sourceforge.net</email>
<organization>Amazon Technologies, Inc.</organization>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.amazon.carbonado</groupId>
<artifactId>carbonado</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.amazon.carbonado</groupId>
<artifactId>carbonado-sleepycat-je</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>project-team</report>
<report>mailing-list</report>
<report>issue-tracking</report>
<report>scm</report>
<report>license</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
|