Wiki source code of SamplePOM
Last modified by René Vögeli on 2026/01/23 08:43
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
1.1 | 1 | <?xml version="XMLVERSION" encoding="UTF-8"?> |
| 2 | |||
| 3 | <!-- | ||
| 4 | * See the NOTICE file distributed with this work for additional | ||
| 5 | * information regarding copyright ownership. | ||
| 6 | * | ||
| 7 | * This is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU Lesser General Public License as | ||
| 9 | * published by the Free Software Foundation; either version 2.1 of | ||
| 10 | * the License, or (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This software is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * Lesser General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU Lesser General Public | ||
| 18 | * License along with this software; if not, write to the Free | ||
| 19 | * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
| 20 | * 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
| 21 | --> | ||
| 22 | |||
| 23 | <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/maven-v4_0_0.xsd"> | ||
| 24 | <modelVersion>4.0.0</modelVersion> | ||
| 25 | <parent> | ||
| 26 | <groupId>org.xwiki.contrib</groupId> | ||
| 27 | <artifactId>parent-platform</artifactId> | ||
| 28 | <version>CONTRIBVERSION</version> | ||
| 29 | </parent> | ||
| 30 | <groupId>org.xwiki.contrib.PRJNAME</groupId> | ||
| 31 | <artifactId>application-PRJNAME</artifactId> | ||
| 32 | <version>1.0-SNAPSHOT</version> | ||
| 33 | <packaging>xar</packaging> | ||
| 34 | <name>PRJNAME Application</name> | ||
| 35 | <description>PRJDESC</description> | ||
| 36 | <properties> | ||
| 37 | <platform.version>${commons.version}</platform.version> | ||
| 38 | |||
| 39 | <!-- Enable auto release on jira --> | ||
| 40 | <xwiki.release.jira.skip>false</xwiki.release.jira.skip> | ||
| 41 | <xwiki.issueManagement.jira.id></xwiki.issueManagement.jira.id> | ||
| 42 | </properties> | ||
| 43 | <developers> | ||
| 44 | <developer> | ||
| 45 | <id>USERNAME</id> | ||
| 46 | <name>USERNAME</name> | ||
| 47 | <organization>XWiki SAS</organization> | ||
| 48 | </developer> | ||
| 49 | </developers> | ||
| 50 | <build> | ||
| 51 | <!-- Needed to add support for the XAR packaging --> | ||
| 52 | <extensions> | ||
| 53 | <extension> | ||
| 54 | <groupId>org.xwiki.commons</groupId> | ||
| 55 | <artifactId>xwiki-commons-tool-xar-handlers</artifactId> | ||
| 56 | <version>${commons.version}</version> | ||
| 57 | </extension> | ||
| 58 | </extensions> | ||
| 59 | </build> | ||
| 60 | <scm> | ||
| 61 | <connection>scm:git:git://git.xwikisas.com/REPOSITORY_USER/REPOSITORY_NAME.git</connection> | ||
| 62 | <developerConnection>scm:git:git@git.xwikisas.com:REPOSITORY_USER/REPOSITORY_NAME.git</developerConnection> | ||
| 63 | <url>https://git.xwikisas.com/REPOSITORY_USER/REPOSITORY_NAME</url> | ||
| 64 | <tag>HEAD</tag> | ||
| 65 | </scm> | ||
| 66 | <distributionManagement> | ||
| 67 | <repository> | ||
| 68 | <id>xwiki-staging</id> | ||
| 69 | <name>XWiki Staging Repository</name> | ||
| 70 | <url>http://nexus.xwiki.org/nexus/service/local/staging/deploy/maven2/</url> | ||
| 71 | </repository> | ||
| 72 | </distributionManagement> | ||
| 73 | </project> |