Rev 9 | Rev 11 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 9 | Rev 10 | ||
---|---|---|---|
1 | <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/xsd/maven-4.0.0.xsd">
|
1 | <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/xsd/maven-4.0.0.xsd">
|
2 | <modelVersion>4.0.0</modelVersion> |
2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | ||
4 | <groupId>org.mentacontainer</groupId> |
4 | <groupId>org.mentacontainer</groupId> |
5 | <artifactId>MentaContainer</artifactId> |
5 | <artifactId>MentaContainer</artifactId> |
6 | <version>0.0.2-SNAPSHOT</version> |
6 | <version>0.0.2-SNAPSHOT</version> |
7 | <packaging>jar</packaging> |
7 | <packaging>jar</packaging> |
8 | 8 | ||
9 | <name>MentaContainer</name> |
9 | <name>MentaContainer</name> |
10 | <url>http://maven.apache.org</url> |
10 | <url>http://maven.apache.org</url> |
- | 11 | ||
- | 12 | <properties>
|
|
- | 13 | <build.final.name>mentacontainer</build.final.name> |
|
- | 14 | <svn.url>svn://saoj-la.dyndns.org/mentacontainer/trunk</svn.url> |
|
- | 15 | <svn.tags>svn://saoj-la.dyndns.org/mentacontainer/tags</svn.tags> |
|
- | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
- | 17 | </properties>
|
|
- | 18 | ||
11 | <scm>
|
19 | <scm>
|
12 | <developerConnection>scm:svn:svn://saoj-la.dyndns.org/mentacontainer/trunk</developerConnection> |
- | |
- | 20 | <developerConnection>scm:svn:${svn.url}</developerConnection> |
|
- | 21 | <url>${svn.url}</url> |
|
- | 22 | <connection>scm:svn:${svn.url}</connection> |
|
13 | </scm>
|
23 | </scm>
|
14 | - | ||
15 | <properties>
|
- | |
16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
- | |
17 | </properties>
|
- | |
18 | 24 | ||
19 | <dependencies>
|
25 | <dependencies>
|
20 | <dependency>
|
26 | <dependency>
|
21 | <groupId>junit</groupId> |
27 | <groupId>junit</groupId> |
22 | <artifactId>junit</artifactId> |
28 | <artifactId>junit</artifactId> |
23 | <version>4.8.1</version> |
29 | <version>4.8.1</version> |
24 | <scope>test</scope> |
30 | <scope>test</scope> |
25 | </dependency>
|
31 | </dependency>
|
26 | </dependencies>
|
32 | </dependencies>
|
27 | <build>
|
33 | <build>
|
28 | <finalName>moderation</finalName> |
- | |
- | 34 | <finalName>${build.final.name}</finalName> |
|
29 | <plugins>
|
35 | <plugins>
|
30 | <plugin>
|
36 | <plugin>
|
31 | <groupId>org.apache.maven.plugins</groupId> |
37 | <groupId>org.apache.maven.plugins</groupId> |
32 | <artifactId>maven-compiler-plugin</artifactId> |
38 | <artifactId>maven-compiler-plugin</artifactId> |
33 | <version>2.0.2</version> |
39 | <version>2.0.2</version> |
34 | <configuration>
|
40 | <configuration>
|
35 | <source>1.6</source> |
41 | <source>1.6</source> |
36 | <target>1.6</target> |
42 | <target>1.6</target> |
37 | </configuration>
|
43 | </configuration>
|
38 | </plugin>
|
44 | </plugin>
|
39 | <plugin>
|
45 | <plugin>
|
40 | <artifactId>maven-javadoc-plugin</artifactId> |
46 | <artifactId>maven-javadoc-plugin</artifactId> |
41 | <version>2.7</version> |
47 | <version>2.7</version> |
42 | <configuration />
|
48 | <configuration />
|
43 | </plugin>
|
49 | </plugin>
|
44 | <plugin>
|
50 | <plugin>
|
45 | <artifactId>maven-release-plugin</artifactId> |
51 | <artifactId>maven-release-plugin</artifactId> |
46 | <version>2.0</version> |
52 | <version>2.0</version> |
47 | <configuration>
|
53 | <configuration>
|
48 | <tagBase>svn://saoj-la.dyndns.org/mentacontainer/tags/</tagBase> |
- | |
- | 54 | <tagBase>${svn.tags}</tagBase> |
|
- | 55 | <connectionUrl>scm:svn:${svn.url}</connectionUrl> |
|
49 | </configuration>
|
56 | </configuration>
|
50 | </plugin>
|
57 | </plugin>
|
51 | </plugins>
|
58 | </plugins>
|
52 | </build>
|
59 | </build>
|
53 | </project>
|
60 | </project>
|
54 | 61 |