-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed line endings for distribution packages. Dependencies updated.
- Loading branch information
Showing
7 changed files
with
171 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component xmlns="http://maven.apache.org/ASSEMBLY-COMPONENT/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY-COMPONENT/2.0.0 http://maven.apache.org/xsd/assembly-component-2.0.0.xsd"> | ||
<dependencySets> | ||
<dependencySet> | ||
<useProjectArtifact>false</useProjectArtifact> | ||
<useTransitiveDependencies>true</useTransitiveDependencies> | ||
<outputDirectory>lib</outputDirectory> | ||
<unpack>false</unpack> | ||
</dependencySet> | ||
</dependencySets> | ||
|
||
<fileSets> | ||
<!-- user defined property files --> | ||
<fileSet> | ||
<directory>.</directory> | ||
<includes> | ||
<include>cmd.properties</include> | ||
</includes> | ||
<outputDirectory></outputDirectory> | ||
<lineEnding>${assembly.line.endings}</lineEnding> | ||
</fileSet> | ||
<!-- static content --> | ||
<fileSet> | ||
<directory>.</directory> | ||
<includes> | ||
<include>README*</include> | ||
<include>LICENSE*</include> | ||
<include>NOTICE*</include> | ||
</includes> | ||
<outputDirectory></outputDirectory> | ||
<lineEnding>${assembly.line.endings}</lineEnding> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.build.directory}</directory> | ||
<includes> | ||
<include>*.jar</include> | ||
</includes> | ||
<outputDirectory></outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component xmlns="http://maven.apache.org/ASSEMBLY-COMPONENT/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY-COMPONENT/2.0.0 http://maven.apache.org/xsd/assembly-component-2.0.0.xsd"> | ||
<dependencySets> | ||
<dependencySet> | ||
<useProjectArtifact>false</useProjectArtifact> | ||
<useTransitiveDependencies>true</useTransitiveDependencies> | ||
<outputDirectory>lib</outputDirectory> | ||
<unpack>false</unpack> | ||
</dependencySet> | ||
</dependencySets> | ||
|
||
<fileSets> | ||
<!-- user defined property files --> | ||
<fileSet> | ||
<directory>.</directory> | ||
<includes> | ||
<include>cmd.properties</include> | ||
</includes> | ||
<outputDirectory></outputDirectory> | ||
<lineEnding>crlf</lineEnding> | ||
</fileSet> | ||
<!-- static content --> | ||
<fileSet> | ||
<directory>.</directory> | ||
<includes> | ||
<include>README*</include> | ||
<include>LICENSE*</include> | ||
<include>NOTICE*</include> | ||
</includes> | ||
<outputDirectory></outputDirectory> | ||
<lineEnding>${assembly.line.endings}</lineEnding> | ||
</fileSet> | ||
<fileSet> | ||
<directory>crlf</directory> | ||
<includes> | ||
<include>*.jar</include> | ||
</includes> | ||
<outputDirectory></outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> | ||
<id>${project.build.finalName}-dir_deploy</id> | ||
<formats> | ||
<format>dir</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<baseDirectory>${release.deploy.finalName}</baseDirectory> | ||
<componentDescriptors> | ||
<componentDescriptor>src/assembly/deployComponent.xml</componentDescriptor> | ||
<componentDescriptor>src/assembly/deployComponentDir.xml</componentDescriptor> | ||
</componentDescriptors> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> | ||
<id>${project.build.finalName}-gz_deploy</id> | ||
<formats> | ||
<format>tar.gz</format> | ||
</formats> | ||
<includeBaseDirectory>true</includeBaseDirectory> | ||
<baseDirectory>${release.deploy.finalName}</baseDirectory> | ||
<componentDescriptors> | ||
<componentDescriptor>src/assembly/deployComponentUnix.xml</componentDescriptor> | ||
</componentDescriptors> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> | ||
<id>${project.build.finalName}-zip_deploy</id> | ||
<formats> | ||
<format>zip</format> | ||
<format>tar.gz</format> | ||
</formats> | ||
<includeBaseDirectory>true</includeBaseDirectory> | ||
<baseDirectory>${release.deploy.finalName}</baseDirectory> | ||
<componentDescriptors> | ||
<componentDescriptor>src/assembly/deployComponent.xml</componentDescriptor> | ||
<componentDescriptor>src/assembly/deployComponentWin.xml</componentDescriptor> | ||
</componentDescriptors> | ||
</assembly> |