| <?xml version="1.0" encoding="UTF-8"?> |
| <project |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <artifactId>libraries</artifactId> |
| <groupId>org.eclipse.koneki.ldt</groupId> |
| <version>0.0.1-SNAPSHOT</version> |
| </parent> |
| <groupId>org.eclipse.koneki.ldt</groupId> |
| <artifactId>luadocumentor</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <properties> |
| <luadocumentor.version>0.1.0</luadocumentor.version> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>buildnumber-maven-plugin</artifactId> |
| <version>1.1</version> |
| <executions> |
| <execution> |
| <phase>validate</phase> |
| <goals> |
| <goal>create</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <doCheck>false</doCheck> |
| <doUpdate>false</doUpdate> |
| <shortRevisionLength>10</shortRevisionLength> |
| <scmDirectory>${project.parent.parent.basedir}</scmDirectory> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.3</version> |
| <executions> |
| <execution> |
| <id>make-32bit-archive</id> |
| <phase>package</phase> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| <configuration> |
| <finalName>luadocumentor-${luadocumentor.version}-${buildNumber}</finalName> |
| <descriptor>archive32.xml</descriptor> |
| </configuration> |
| </execution> |
| <execution> |
| <id>make-64bit-archive</id> |
| <phase>package</phase> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| <configuration> |
| <finalName>luadocumentor-${luadocumentor.version}-${buildNumber}</finalName> |
| <descriptor>archive64.xml</descriptor> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |