| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>fr.opensagres.xdocreport</groupId>
- <artifactId>xdocreport-parent</artifactId>
- <version>1.0.6</version>
- <packaging>pom</packaging>
- <description>XDocReport means XML Document reporting. It's Java API to merge XML document created with MS Office (docx) or OpenOffice (odt), LibreOffice (odt) with a Java model to generate report and convert it if you need to another format (PDF, XHTML...).</description>
- <parent>
- <groupId>org.sonatype.oss</groupId>
- <artifactId>oss-parent</artifactId>
- <version>7</version>
- </parent>
- <licenses>
- <license>
- <name>The MIT License (MIT)</name>
- <url>http://www.opensource.org/licenses/mit-license.php</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <properties>
- <osgi-version-qualifier>${maven.build.timestamp}</osgi-version-qualifier>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
- </properties>
- <build>
- <defaultGoal>install</defaultGoal>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <forkMode>always</forkMode>
- <!-- It's better to use "target" folder as basedir for tests... -->
- <basedir>${project.build.directory}</basedir>
- <redirectTestOutputToFile>true</redirectTestOutputToFile>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
- <manifest>
- <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
- <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <extensions>true</extensions>
- <executions>
- <execution>
- <id>bundle-manifest</id>
- <phase>process-classes</phase>
- <goals>
- <goal>manifest</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <!-- <unpackBundle>true</unpackBundle> -->
- <instructions>
- <_include>TEMPLATE.MF</_include>
- <_snapshot>${osgi-version-qualifier}</_snapshot>
- <_nouses>true</_nouses>
- <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
- <Bundle-RequiredExecutionEnvironment>J2SE-1.5, JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-release-plugin</artifactId>
- <configuration>
- <preparationGoals>clean install -DskipTests</preparationGoals>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- </configuration>
- </plugin>
- <plugin>
- <groupId>com.mycila.maven-license-plugin</groupId>
- <artifactId>maven-license-plugin</artifactId>
- <configuration>
- <basedir>${basedir}</basedir>
- <header>header.txt</header>
- <includes>
- <include>src/**</include>
- <include>**/test/**</include>
- <include>build.properties</include>
- <include>plugin.xml</include>
- </includes>
- <excludes>
- <exclude>target/**</exclude>
- <exclude>**/*.txt</exclude>
- <exclude>**/*.xml</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.1.2</version>
- <configuration>
- <attach>true</attach>
- </configuration>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>verify</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.0</version>
- <configuration>
- <reportPlugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <dependencyDetailsEnabled>true</dependencyDetailsEnabled>
- <dependencyLocationsEnabled>true</dependencyLocationsEnabled>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.9.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-report-plugin</artifactId>
- <version>2.6</version>
- </plugin>
- </reportPlugins>
- </configuration>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.3.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>2.5</version>
- </plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.8.1</version>
- </plugin>
- <plugin>
- <groupId>com.mycila.maven-license-plugin</groupId>
- <artifactId>maven-license-plugin</artifactId>
- <version>1.9.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.14</version>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>2.3.7</version>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.5</version>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.4</version>
- </plugin>
- <plugin>
- <artifactId>maven-failsafe-plugin</artifactId>
- <version>2.17</version>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <version>2.5.1</version>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <developers>
- <developer>
- <id>angelozerr</id>
- <name>Angelo Zerr</name>
- <email>angelo.zerr@gmail.com</email>
- <roles>
- <role>architect</role>
- <role>developper</role>
- </roles>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>pascalleclercq</id>
- <name>Pascal Leclercq</name>
- <email>pascal.leclercq@gmail.com</email>
- <roles>
- <role>developper</role>
- </roles>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>aminebousta</id>
- <name>Amine Bousta</name>
- <email>abousta@gmail.com</email>
- <roles>
- <role>developper</role>
- </roles>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>tiry</id>
- <name>Thierry Delprat</name>
- <email>tdelprat@nuxeo.com</email>
- <roles>
- <role>developper</role>
- </roles>
- <timezone>+1</timezone>
- </developer>
- </developers>
- <scm>
- <connection>scm:git:https://github.com/opensagres/xdocreport.git</connection>
- <developerConnection>scm:git:https://github.com/opensagres/xdocreport.git</developerConnection>
- <url>https://github.com/opensagres/xdocreport/</url>
- <tag>xdocreport-parent-1.0.6</tag>
- </scm>
- <modules>
- <module>thirdparties-extension</module>
- <module>core</module>
- <module>tools</module>
- <module>document</module>
- <module>template</module>
- <module>converter</module>
- <module>integrationtests</module>
- <module>sandbox</module>
- <module>remoting</module>
- <module>gae</module>
- <module>uberjar</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.10</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.core</artifactId>
- <version>4.2.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <issueManagement>
- <system>Google Code</system>
- <url>http://code.google.com/p/xdocreport/issues/list</url>
- </issueManagement>
- <url>http://code.google.com/p/xdocreport/</url>
- <name>XDocReport</name>
- <ciManagement>
- <system>Jenkins</system>
- <url>https://opensagres.ci.cloudbees.com/job/xdocreport/</url>
- <notifiers>
- <notifier>
- <address>pascal.leclercq@gmail.com</address>
- </notifier>
- <notifier>
- <address>angelo.zerr@gmail.com</address>
- </notifier>
- <notifier>
- <address>tdelprat@nuxeo.com</address>
- </notifier>
- </notifiers>
- </ciManagement>
- <profiles>
- <profile>
- <activation>
- <property>
- <name>m2e.version</name>
- </property>
- </activation>
- <properties>
- <osgi-version-qualifier>qualifier</osgi-version-qualifier>
- </properties>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <configuration>
- <!-- PDE does not honour custom manifest location -->
- <manifestLocation>META-INF</manifestLocation>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </profile>
- </profiles>
- </project>
|