Skip to content
Snippets Groups Projects
Commit 17629108 authored by Vincent Massol's avatar Vincent Massol
Browse files

XTLICENSE-1: Add a remote resources JAR that includes XWiki License/Notice files

parent 97eb8d70
No related branches found
No related tags found
No related merge requests found
......@@ -25,31 +25,30 @@
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.xpn.xwiki.platform</groupId>
<artifactId>xwiki</artifactId>
<version>11</version>
<relativePath>../xwiki-platform-pom</relativePath>
<groupId>com.xpn.xwiki.platform.tools</groupId>
<artifactId>xwiki-tools</artifactId>
<version>7-SNAPSHOT</version>
</parent>
<groupId>com.xpn.xwiki.platform.tools</groupId>
<artifactId>xwiki-tools</artifactId>
<name>XWiki Platform - Tools - Parent POM</name>
<version>7</version>
<packaging>pom</packaging>
<description>XWiki Tools</description>
<scm>
<connection>scm:svn:http://svn.xwiki.org/svnroot/xwiki/xwiki-platform/xwiki-tools/tags/xwiki-tools-parent-7</connection>
<developerConnection>scm:svn:https://svn.xwiki.org/svnroot/xwiki/xwiki-platform/xwiki-tools/tags/xwiki-tools-parent-7</developerConnection>
<url>http://svn.xwiki.org/svnroot/xwiki/xwiki-platform/xwiki-tools/tags/xwiki-tools-parent-7</url>
</scm>
<modules>
<module>xwiki-license-resources</module>
<module>xwiki-verification-resources</module>
<module>xwiki-shared-tests</module>
<module>xwiki-xar-plugin</module>
<module>xwiki-xar-handlers</module>
<module>xwiki-xmldoc-update-plugin</module>
<module>xwiki-packager-plugin</module>
<module>xwiki-configuration-resources</module>
<module>xwiki-jetty-resources</module>
</modules>
<artifactId>xwiki-license-resources</artifactId>
<name>XWiki Platform - Tools - XWiki License Resources</name>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<description>
XWiki License file (License + Notice file containing copyrights).
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
This diff is collapsed.
// ------------------------------------------------------------------
// NOTICE file containing copyrights,
// in this case for #if ($projectName)$projectName#else${project.name}#end
// ------------------------------------------------------------------
#if ($projectName)$projectName#else${project.name}#end
Copyright ${projectTimespan}#if($project.organization.name) $project.organization.name#else XWiki#end
#if($preProjectText)
$preProjectText
#end
#foreach ( $organizationName in $projectsSortedByOrganization.keySet() )
This product includes/uses software developed by '$organizationName.name'#if($organizationName.url) ($organizationName.url)#end
#foreach ( $project in $projectsSortedByOrganization.get( $organizationName ) )
- $project.name#if ($addVersion) (version $project.version)#end#if ($addArtifact) ($project.artifact)#end#if($project.url) ($project.url)#end
#if ($addLicense)#foreach ( $license in $project.licenses)
License: $license.name #if ($license.url) ($license.url)#end
#end#end
#end
#end
#if($postProjectText)
$postProjectText
#end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment