Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
cc6e482a19 | |||
2b8fb752f3 | |||
8ea2e3c15d | |||
6ca94e982d | |||
e22932b100 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -2,3 +2,7 @@
|
||||
pom.xml.versionsBackup
|
||||
target
|
||||
|
||||
# Eclipse
|
||||
.project
|
||||
.classpath
|
||||
.settings
|
||||
|
10
pom.xml
10
pom.xml
@@ -7,16 +7,24 @@
|
||||
|
||||
<groupId>com.inteligr8.alfresco</groupId>
|
||||
<artifactId>maven-assembly-amp-descriptor</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.0.3</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>A Maven Assembly Descriptor to assist with the creation of Alfresco Module Packages (AMPs)</name>
|
||||
|
||||
<scm>
|
||||
<url>https://bitbucket.org/inteligr8/maven-assembly-amp-descriptor</url>
|
||||
</scm>
|
||||
<organization>
|
||||
<name>Inteligr8</name>
|
||||
<url>https://www.inteligr8.com</url>
|
||||
</organization>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>brian.long</id>
|
||||
<name>Brian Long</name>
|
||||
<email>brian@inteligr8.com</email>
|
||||
<url>https://twitter.com/brianmlong</url>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
|
@@ -13,8 +13,8 @@
|
||||
<!-- required files -->
|
||||
<files>
|
||||
<file>
|
||||
<source>${project.build.outputDirectory}/alfresco/module/${project.artifactId}/module.properties</source>
|
||||
<filtered>true</filtered>
|
||||
<source>${project.build.outputDirectory}/alfresco/module/${project.groupId}.${project.artifactId}/module.properties</source>
|
||||
<filtered>false</filtered>
|
||||
</file>
|
||||
</files>
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
<!-- Optional log4j mapping -->
|
||||
<fileSet>
|
||||
<directory>${project.build.outputDirectory}/alfresco/module/${project.artifactId}</directory>
|
||||
<directory>${project.build.outputDirectory}/alfresco/module/${project.groupId}.${project.artifactId}</directory>
|
||||
<filtered>false</filtered>
|
||||
<includes>
|
||||
<include>log4j.properties</include>
|
||||
@@ -41,9 +41,9 @@
|
||||
|
||||
<!-- A bunch of possible web resource locations -->
|
||||
<fileSet>
|
||||
<directory>target/web</directory>
|
||||
<outputDirectory>web</outputDirectory>
|
||||
<directory>${project.build.outputDirectory}/web</directory>
|
||||
<filtered>false</filtered>
|
||||
<outputDirectory>web</outputDirectory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
|
||||
|
Reference in New Issue
Block a user