Skip to content

Commit

Permalink
Simplify project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nadment committed Sep 16, 2018
1 parent dd327ee commit 8c17a53
Show file tree
Hide file tree
Showing 34 changed files with 298 additions and 679 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
1.0.1 # nadment 2018/09/14
- Fix path in zip file for use with marketplace

1.0.0 # nadment 2018/09/11
- Initial release
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ Pentaho Data Integration 8.0 or above

## Documentation

[PDI AS/400 Plugin Wiki](https://github.com/nadment/pdi-as400/wiki)
[See Plugin Wiki](https://github.com/nadment/pdi-as400-plugin/wiki)

## Support

This plugin for PDI is provided “as is”, without any warranties, expressed or implied. This software is not covered by any Support Agreement.

## License

Licensed under the Apache License, Version 2.0. See LICENSE.txt for more information.
Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).


17 changes: 0 additions & 17 deletions assemblies/.project

This file was deleted.

2 changes: 0 additions & 2 deletions assemblies/.settings/org.eclipse.core.resources.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions assemblies/.settings/org.eclipse.m2e.core.prefs

This file was deleted.

17 changes: 0 additions & 17 deletions assemblies/plugin/.project

This file was deleted.

2 changes: 0 additions & 2 deletions assemblies/plugin/.settings/org.eclipse.core.resources.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions assemblies/plugin/.settings/org.eclipse.m2e.core.prefs

This file was deleted.

80 changes: 0 additions & 80 deletions assemblies/plugin/pom.xml

This file was deleted.

42 changes: 0 additions & 42 deletions assemblies/plugin/src/assembly/assembly.xml

This file was deleted.

19 changes: 0 additions & 19 deletions assemblies/pom.xml

This file was deleted.

43 changes: 43 additions & 0 deletions assembly/plugin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
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">

<id>pdi-plugin</id>

<formats>
<format>zip</format>
</formats>

<baseDirectory>${project.artifactId}</baseDirectory>

<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>${file.separator}</outputDirectory>
<includes>
<include>${project.artifactId}-${project.version}.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>assembly</directory>
<outputDirectory>${file.separator}</outputDirectory>
<filtered>true</filtered>
<includes>
<include>version.xml</include>
</includes>
</fileSet>
</fileSets>

<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
<useProjectArtifact>false</useProjectArtifact>
<scope>runtime</scope>
<includes>
<include>net.sf.jt400:jt400</include>
</includes>
</dependencySet>
</dependencySets>

</assembly>
File renamed without changes.
31 changes: 0 additions & 31 deletions core/.classpath

This file was deleted.

23 changes: 0 additions & 23 deletions core/.project

This file was deleted.

5 changes: 0 additions & 5 deletions core/.settings/org.eclipse.core.resources.prefs

This file was deleted.

5 changes: 0 additions & 5 deletions core/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions core/.settings/org.eclipse.m2e.core.prefs

This file was deleted.

Loading

0 comments on commit 8c17a53

Please sign in to comment.