Rev 7 | Rev 10 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 7 | Rev 9 | ||
---|---|---|---|
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. |
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 | <scm>
|
11 | <scm>
|
12 | <developerConnection>scm:svn:svn://saoj-la.dyndns.org/mentacontainer/ |
12 | <developerConnection>scm:svn:svn://saoj-la.dyndns.org/mentacontainer/trunk</developerConnection> |
13 | </scm>
|
13 | </scm>
|
14 | 14 | ||
15 | <properties>
|
15 | <properties>
|
16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 | </properties>
|
17 | </properties>
|
18 | 18 | ||
19 | <dependencies>
|
19 | <dependencies>
|
20 | <dependency>
|
20 | <dependency>
|
21 | <groupId>junit</groupId> |
21 | <groupId>junit</groupId> |
22 | <artifactId>junit</artifactId> |
22 | <artifactId>junit</artifactId> |
23 | <version>4.8.1</version> |
23 | <version>4.8.1</version> |
24 | <scope>test</scope> |
24 | <scope>test</scope> |
25 | </dependency>
|
25 | </dependency>
|
26 | </dependencies>
|
26 | </dependencies>
|
27 | <build>
|
27 | <build>
|
28 | <finalName>moderation</finalName> |
28 | <finalName>moderation</finalName> |
29 | <plugins>
|
29 | <plugins>
|
30 | <plugin>
|
30 | <plugin>
|
31 | <groupId>org.apache.maven.plugins</groupId> |
31 | <groupId>org.apache.maven.plugins</groupId> |
32 | <artifactId>maven-compiler-plugin</artifactId> |
32 | <artifactId>maven-compiler-plugin</artifactId> |
33 | <version>2.0.2</version> |
33 | <version>2.0.2</version> |
34 | <configuration>
|
34 | <configuration>
|
35 | <source>1.6</source> |
35 | <source>1.6</source> |
36 | <target>1.6</target> |
36 | <target>1.6</target> |
37 | </configuration>
|
37 | </configuration>
|
38 | </plugin>
|
38 | </plugin>
|
39 | <plugin>
|
39 | <plugin>
|
40 | <artifactId>maven-javadoc-plugin</artifactId> |
40 | <artifactId>maven-javadoc-plugin</artifactId> |
41 | <version>2.7</version> |
41 | <version>2.7</version> |
42 | <configuration />
|
42 | <configuration />
|
43 | </plugin>
|
43 | </plugin>
|
44 | <plugin>
|
44 | <plugin>
|
45 | <artifactId>maven-release-plugin</artifactId> |
45 | <artifactId>maven-release-plugin</artifactId> |
46 | <version>2.0</version> |
46 | <version>2.0</version> |
47 | <configuration>
|
47 | <configuration>
|
48 | <tagBase>svn://saoj-la.dyndns.org/mentacontainer/tags/</tagBase> |
48 | <tagBase>svn://saoj-la.dyndns.org/mentacontainer/tags/</tagBase> |
49 | </configuration>
|
49 | </configuration>
|
50 | </plugin>
|
50 | </plugin>
|
51 | </plugins>
|
51 | </plugins>
|
52 | </build>
|
52 | </build>
|
53 | </project>
|
53 | </project>
|
54 | 54 |