Rev 9 | Rev 11 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 9 | Rev 10 | ||
---|---|---|---|
Line 6... | Line 6... | ||
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> |
Line 43... | Line 49... | ||
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>
|