Commit d23ff545728c2f4c4181ef8a0e5b99d08791e74e
1 parent
dd3ca2f81e
Exists in
master
REPO-1258: Update pom file
Showing
1 changed file
with
33 additions
and
34 deletions
Show diff stats
pom.xml
... | ... | @@ -2,14 +2,17 @@ |
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | |
5 | - <groupId>org.alfresco</groupId> | |
5 | + <parent> | |
6 | + <groupId>org.alfresco</groupId> | |
7 | + <artifactId>alfresco-super-pom</artifactId> | |
8 | + <version>6</version> | |
9 | + </parent> | |
10 | + | |
6 | 11 | <artifactId>alfresco-xmlfactory</artifactId> |
7 | - <version>1.0.4-SNAPSHOT</version> | |
8 | - <packaging>jar</packaging> | |
9 | - <name>xmlfactory</name> | |
12 | + <name>Alfresco XML Factory</name> | |
10 | 13 | <description>Alfresco-defined SAXParserFactory and DocumentBuilderFactory implementations, derived from the Xerces versions, |
11 | 14 | which allow features to be configured on and off at bootstrap</description> |
12 | - <url>http://www.alfresco.com/</url> | |
15 | + <version>6.0-SNAPSHOT</version> | |
13 | 16 | |
14 | 17 | <properties> |
15 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
... | ... | @@ -68,41 +71,37 @@ |
68 | 71 | <dependency> |
69 | 72 | <groupId>commons-logging</groupId> |
70 | 73 | <artifactId>commons-logging</artifactId> |
71 | - <version>1.1.1</version> | |
74 | + <version>1.2</version> | |
72 | 75 | <scope>provided</scope> |
73 | 76 | </dependency> |
74 | 77 | </dependencies> |
75 | 78 | |
76 | 79 | <build> |
77 | - <plugins> | |
78 | - <plugin> | |
79 | - <groupId>org.apache.maven.plugins</groupId> | |
80 | - <artifactId>maven-compiler-plugin</artifactId> | |
81 | - <version>3.1</version> | |
82 | - <configuration> | |
83 | - <target>1.5</target> | |
84 | - </configuration> | |
85 | - </plugin> | |
80 | + <pluginManagement> | |
81 | + <plugins> | |
82 | + <plugin> | |
83 | + <artifactId>maven-release-plugin</artifactId> | |
84 | + <configuration> | |
85 | + <autoVersionSubmodules>true</autoVersionSubmodules> | |
86 | + <tagNameFormat>@{project.version}</tagNameFormat> | |
87 | + </configuration> | |
88 | + </plugin> | |
89 | + </plugins> | |
90 | + </pluginManagement> | |
86 | 91 | |
87 | - <plugin> | |
88 | - <groupId>org.apache.maven.plugins</groupId> | |
89 | - <artifactId>maven-assembly-plugin</artifactId> | |
90 | - <version>2.4</version> | |
91 | - <configuration> | |
92 | - <descriptors> | |
93 | - <descriptor>src/assembly/bin.xml</descriptor> | |
94 | - </descriptors> | |
95 | - </configuration> | |
96 | - <executions> | |
97 | - <execution> | |
98 | - <phase>package</phase> | |
99 | - <goals> | |
100 | - <goal>single</goal> | |
101 | - </goals> | |
102 | - </execution> | |
103 | - </executions> | |
104 | - </plugin> | |
105 | - </plugins> | |
92 | + <plugins> | |
93 | + <plugin> | |
94 | + <artifactId>maven-jar-plugin</artifactId> | |
95 | + <version>2.6</version> | |
96 | + <executions> | |
97 | + <execution> | |
98 | + <goals> | |
99 | + <goal>test-jar</goal> | |
100 | + </goals> | |
101 | + </execution> | |
102 | + </executions> | |
103 | + </plugin> | |
104 | + </plugins> | |
106 | 105 | </build> |
107 | 106 | |
108 | 107 | <profiles> | ... | ... |