diff --git a/CHANGELOG b/CHANGELOG
index eb23332..c3b897c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,11 @@
CHANGELOG
=========
+5.0.1
+-----
+
+* Move tiles back to own project
+
5.0.0
-----
diff --git a/README.md b/README.md
index 299f35a..b076e57 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,6 @@
KEMITIX-PARENT
==============
-* `kemitix-parent`
-* `kemitix-maven-tiles`
-
-## Parent
-
A parent POM for my own personal projects.
### Usage
@@ -35,212 +30,3 @@ The POM sets the following properties:
* `project.reporting.outputEncoding` as `UTF-8`
* `java.version` as `1.8`
-
-## Tiles
-
-Maven Tiles for preconfigured plugins. These can be used independently of the `kemitix-parent` POM.
-
-### Usage
-
-```xml
-
-
- 2.10
- 0.1.0
-
-
-
-
- io.repaint.maven
- tiles-maven-plugin
- ${tiles-maven-plugin.version}
- true
-
-
- net.kemitix.tiles:all-tiles:${kemitix-tiles.version}
-
-
-
- net.kemitix.tiles:maven-plugins-tile:${kemitix-tiles.version}
- net.kemitix.tiles:enforcer-tile:${kemitix-tiles.version}
- net.kemitix.tiles:compiler-tile:${kemitix-tiles.version}
- net.kemitix.tiles:checkstyle-tile:${kemitix-tiles.version}
- net.kemitix.tiles:huntbugs-tile:${kemitix-tiles.version}
- net.kemitix.tiles:pmd-tile:${kemitix-tiles.version}
- net.kemitix.tiles:digraph-tile:${kemitix-tiles.version}
- net.kemitix.tiles:testing-tile:${kemitix-tiles.version}
- net.kemitix.tiles:coverage-tile:${kemitix-tiles.version}
- net.kemitix.tiles:pitest-tile:${kemitix-tiles.version}
- net.kemitix.tiles:release-tile:${kemitix-tiles.version}
-
-
-
-
-
-
-```
-
-### Properties
-
-If you want to override the version or configuration values of any of the plugins configured by the tiles, you can set the following properties to the desired value.
-
-* `project.build.sourceEncoding`
-* `maven-javadoc-plugin.version`
-* `maven-source-plugin.version`
-* `maven-gpg-plugin.version`
-* `maven-deploy-plugin.version`
-* `maven-compiler-plugin.version`
-* `maven-surefire-plugin.version`
-* `maven-failsafe-plugin.version`
-* `maven-jxr-plugin.version`
-* `java.version`
-* `versions.version`
-* `coveralls-maven-plugin.version`
-
-### Maven Plugins Tile
-
-Sets updated versions for the following `org.apache.maven.plugins`:
-
-* `maven-clean-plugin`
-* `maven-install-plugin`
-* `maven-site-plugin`
-
-Adds an updated version of the `org.codehaus.mojo:versions-maven-plugin` plugin.
-
-#### Maven JXR Plugin
-
-The [Maven JXR Plugin](http://maven.apache.org/jxr/maven-jxr-plugin/index.html) produces cross-referenced HTML pages of your source code as part of the `compile` phase in `target/site/xref/`.
-
-### Enforcer Tile
-
-Provides the `maven-enforcer-plugin`, performing the `display-info` and `enforce` goals during the `validate` phase.
-
-Required Maven Version is set by the `required-maven.version` property.
-
-Required Java Version is set by the `java.version` property.
-
-### Compiler Tile
-
-#### Maven Compiler Plugin
-
-The [Maven Compiler Plugin](https://maven.apache.org/plugins/maven-compiler-plugin/) compiles your sources.
-
-Ref: [compile:compile](https://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html)
-
-* showDeprecation: true
-* showWarnings: true
-* source: ${java.version}
-* target: ${java.version}
-* encoding: ${project.build.sourceEncoding}
-
-### Checkstyle Tile
-
-The [Maven Checkstyle Plugin](https://maven.apache.org/plugins/maven-checkstyle-plugin/) verifies the source code against a Checkstyle ruleset file.
-
-The default ruleset is the level `5-complexity` ruleset from [`kemitix-checkstyle-ruleset`](https://github.com/kemitix/kemitix-checkstyle-ruleset).
-
-To use another level within `kemitix-checkstyle-ruleset`, set the `ruleset.level` property. e.g. `4-tweaks`.
-
-To use a different checkstyle ruleset completely, set the `checkstyle.ruleset.location` property.
-
-
-### Huntbugs Tile
-
-The [Huntbugs Maven Plugin](https://github.com/amaembo/huntbugs) performs a static analysis of the compiled bytecode for common bug patterns during the `verify` phase.
-
-### PMD Tile
-
-The [PMD Maven Plugin](https://maven.apache.org/plugins/maven-pmd-plugin/) performs the PMD static code analysis during the `verify` phase.
-
-Has a transitive dependency upon the `maven-plugins-tile` and includes it automatically.
-
-### Digraph Tile
-
-The [Digraph Maven Plugin](https://github.com/kemitix/digraph-dependency-maven-plugin/) creates a graphviz diagram of the package dependencies within the source code during the `verify` phase.
-
-Set the property `digraph-dependency.basePackage` to the base of the project to be graphed. The default value is `net.kemitix`.
-
-### Testing Tile
-
-#### Maven Surefire Plugin
-
-The [Maven Surefire Plugin](http://maven.apache.org/surefire/maven-surefire-plugin/index.html) runs your Unit Tests during the `test` phase.
-
-### Maven Failsafe Plugin
-
-The [Maven Failsafe Plugin](http://maven.apache.org/surefire/maven-failsafe-plugin/index.html) runs your Integration Tests during the `verify` phase.
-
-### Coverage Tile
-
-#### Jacoco
-
-The [Jacoco Maven Plugin](http://www.eclemma.org/jacoco/trunk/doc/maven.html) verifies that the test suite meets the required coverage ratios.
-
-The defaults require that all classes, lines and branches be covered by tests. i.e. 100% code coverage.
-
-Set the following properties to set less strict targets:
-
-* `jacoco-class-line-covered-ratio` - default = 1 (i.e. 100%)
-* `jacoco-class-instruction-covered-ratio` - default = 1 (i.e. 100%)
-* `jacoco-class-missed-count-maximum` - default = 0 (i.e. #classes with no tests <= 0)
-
-Classes with names that end in the following are excluded from these limits:
-
-* `Test`
-* `IT`
-* `Main`
-* `Application`
-* `Configuration`
-* `Immutable`
-
-#### Coveralls
-
-The [Coveralls Maven Plugin](https://github.com/trautonen/coveralls-maven-plugin) publishes coverage data to coveralls.io.
-
-The plugin is not configured to run automatically. It must be initiated manually, and requires the `release` profile to be enabled:
-
-```shell
-mvn -P release test jacoco:report coveralls:report
-```
-
-This runs the tests, creates the jacoco report from the tests then uploads the results to http://coveralls.io.
-
-### Pitest Tile
-
-#### Mutation Testing
-
-The [Pitest Maven Plugin](http://pitest.org/quickstart/maven/) perform mutation test coverage checks during the `verify` phase.
-
-Code coverage must by 100% and all mutations must result in a test from the test suite failing.
-
-Set `pitest.skip` to avoid running the mutation test.
-
-Set `pitest.coverage` to a value between 0 and 1 to set the allowed ratio of uncovered code. i.e. 0 = 100% code coverage, 0.2 = 80% code coverage
-
-Set `pitest.mutation` to a value between 0 and 1 to set the allowed mutations to survive the test suite. i.e. 0 = 100% mutations caught, 0.2 = 80% mutations caught
-
-#### Highwheel Cyclic Analysis
-
-The [Highwheel Maven Plugin](https://github.com/hcoles/highwheel) detects and visualises class and package cyclic dependencies during the `verify` phase. It also reports on tests that appear to have been orphaned during refactoring.
-
-The generated report is created in `target/highwheel/`.
-
-### Release Tile
-
-The plugins in this Tile are only activated when the `release` profile is enabled.
-
-#### Maven Source Plugin
-
-The [Maven Source Plugin](https://maven.apache.org/plugins/maven-source-plugin/) bundles your sources into a jar file ready for deployment.
-
-Runs its [jar-no-fork](https://maven.apache.org/plugins/maven-source-plugin/jar-no-fork-mojo.html) goal during the `verify` phase.
-
-#### Maven Javadoc Plugin
-
-The [Maven Javadoc Plugin](https://maven.apache.org/plugins/maven-javadoc-plugin/) generates your html javadocs and bundles them into a jar file ready for deployment.
-
-Runs its [jar](https://maven.apache.org/plugins/maven-javadoc-plugin/jar-mojo.html) goal during the `verify` phase.
-
-#### Maven Deploy Plugin
-
-The [Maven Deploy Plugin](https://maven.apache.org/plugins/maven-deploy-plugin/) uploads your artifacts to a remote repository.
diff --git a/pom.xml b/pom.xml
index 6ba7184..1039b60 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,10 +44,6 @@
-
- tiles
-
-
sonatype-nexus-snapshots
diff --git a/tiles/.gitignore b/tiles/.gitignore
deleted file mode 100644
index e68e0db..0000000
--- a/tiles/.gitignore
+++ /dev/null
@@ -1,36 +0,0 @@
-# Package Files #
-*.jar
-*.war
-*.ear
-*.zip
-
-# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
-hs_err_pid*
-
-# maven build outputs
-target/
-
-# netbeans legacy
-nbproject/
-nbactions.xml
-
-# eclipse legacy
-.project
-
-# intellij
-.idea/
-*.iml
-
-# Spring
-spring.log
-logs/
-/application.properties
-/bootstrap.properties
-
-# Composer-style
-vendor
-
-# Git and temp files
-*.orig
-*.patch
-*~
diff --git a/tiles/LICENSE.txt b/tiles/LICENSE.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/tiles/README.md b/tiles/README.md
deleted file mode 100644
index b5c62da..0000000
--- a/tiles/README.md
+++ /dev/null
@@ -1,43 +0,0 @@
-# Kemitix Maven Tiles
-
-## Usage
-
-```xml
-
-
- 2.10
- 0.1.0
-
-
-
-
- io.repaint.maven
- tiles-maven-plugin
- ${tiles-maven-plugin.version}
- true
-
-
- net.kemitix.tiles:all-tiles:${kemitix-tiles.version}
-
-
-
- net.kemitix.tiles:maven-plugins-tile:${kemitix-tiles.version}
- net.kemitix.tiles:enforcer-tile:${kemitix-tiles.version}
- net.kemitix.tiles:compiler-tile:${kemitix-tiles.version}
- net.kemitix.tiles:checkstyle-tile:${kemitix-tiles.version}
- net.kemitix.tiles:huntbugs-tile:${kemitix-tiles.version}
- net.kemitix.tiles:pmd-tile:${kemitix-tiles.version}
- net.kemitix.tiles:digraph-tile:${kemitix-tiles.version}
- net.kemitix.tiles:testing-tile:${kemitix-tiles.version}
- net.kemitix.tiles:coverage-tile:${kemitix-tiles.version}
- net.kemitix.tiles:pitest-tile:${kemitix-tiles.version}
- net.kemitix.tiles:release-tile:${kemitix-tiles.version}
-
-
-
-
-
-
-```
-
-Enabling the plugins in the `release-tile` requires the `release` profile to be active.
diff --git a/tiles/all/pom.xml b/tiles/all/pom.xml
deleted file mode 100644
index b8e9635..0000000
--- a/tiles/all/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- all-tiles
- tile
-
-
diff --git a/tiles/all/tile.xml b/tiles/all/tile.xml
deleted file mode 100644
index 683b376..0000000
--- a/tiles/all/tile.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
- io.repaint.maven
- tiles-maven-plugin
- ${tiles-maven-plugin.version}
- true
-
-
- net.kemitix.tiles:maven-plugins-tile:0.1.0
- net.kemitix.tiles:enforcer-tile:0.1.0
- net.kemitix.tiles:compiler-tile:0.1.0
- net.kemitix.tiles:checkstyle-tile:0.1.0
- net.kemitix.tiles:huntbugs-tile:0.1.0
- net.kemitix.tiles:pmd-tile:0.1.0
- net.kemitix.tiles:digraph-tile:0.1.0
- net.kemitix.tiles:testing-tile:0.1.0
- net.kemitix.tiles:coverage-tile:0.1.0
- net.kemitix.tiles:pitest-tile:0.1.0
- net.kemitix.tiles:release-tile:0.1.0
-
-
-
-
-
-
diff --git a/tiles/checkstyle/pom.xml b/tiles/checkstyle/pom.xml
deleted file mode 100644
index 559c84c..0000000
--- a/tiles/checkstyle/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- checkstyle-tile
- tile
-
-
diff --git a/tiles/checkstyle/tile.xml b/tiles/checkstyle/tile.xml
deleted file mode 100644
index 96ea2c7..0000000
--- a/tiles/checkstyle/tile.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
- 2.17
- 8.0
- 1.24.1
- 3.3.0
- 5-complexity
- net/kemitix/checkstyle-${ruleset.level}.xml
-
-
-
-
- org.apache.maven.plugins
- maven-checkstyle-plugin
- ${maven-checkstyle-plugin.version}
-
-
- com.puppycrawl.tools
- checkstyle
- ${checkstyle.version}
-
-
- com.github.sevntu-checkstyle
- sevntu-checkstyle-maven-plugin
- ${sevntu.version}
-
-
- net.kemitix
- kemitix-checkstyle-ruleset
- ${ruleset.version}
-
-
-
- ${checkstyle.ruleset.location}
-
-
-
- verify
-
- check
-
-
-
-
-
-
-
diff --git a/tiles/compiler/pom.xml b/tiles/compiler/pom.xml
deleted file mode 100644
index 011c3d1..0000000
--- a/tiles/compiler/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- compiler-tile
- tile
-
-
diff --git a/tiles/compiler/tile.xml b/tiles/compiler/tile.xml
deleted file mode 100644
index f3222f1..0000000
--- a/tiles/compiler/tile.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
- 1.8
- 3.7.0
- UTF-8
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
- ${maven-compiler-plugin.version}
-
-
- -Xlint:unchecked
-
- true
- true
-
- ${java.version}
- ${project.build.sourceEncoding}
-
-
-
-
-
diff --git a/tiles/coverage/pom.xml b/tiles/coverage/pom.xml
deleted file mode 100644
index 9c63fc9..0000000
--- a/tiles/coverage/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- coverage-tile
- tile
-
-
diff --git a/tiles/coverage/tile.xml b/tiles/coverage/tile.xml
deleted file mode 100644
index edbe34e..0000000
--- a/tiles/coverage/tile.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
- UTF-8
- 0.7.9
- 4.3.0
- 1
- 1
- 0
-
-
-
-
- org.jacoco
- jacoco-maven-plugin
- ${jacoco-maven-plugin.version}
-
-
-
- prepare-agent
-
-
-
- report
- prepare-package
-
- report
-
-
-
- default-check
-
- check
-
-
-
-
-
-
- CLASS
-
- *Test
- *IT
- *Main
- *Application
- *Configuration
- *Immutable*
-
-
-
- LINE
- COVEREDRATIO
- ${jacoco-class-line-covered-ratio}
-
-
- INSTRUCTION
- COVEREDRATIO
- ${jacoco-class-instruction-covered-ratio}
-
-
- CLASS
- MISSEDCOUNT
- ${jacoco-class-missed-count-maximum}
-
-
-
-
-
-
-
- org.eluder.coveralls
- coveralls-maven-plugin
- ${coveralls-maven-plugin.version}
-
-
-
-
-
-
- org.jacoco
- jacoco-maven-plugin
- ${jacoco-maven-plugin.version}
-
-
-
-
diff --git a/tiles/digraph/pom.xml b/tiles/digraph/pom.xml
deleted file mode 100644
index b840b0a..0000000
--- a/tiles/digraph/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- digraph-tile
- tile
-
-
diff --git a/tiles/digraph/tile.xml b/tiles/digraph/tile.xml
deleted file mode 100644
index df398fd..0000000
--- a/tiles/digraph/tile.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
- 0.9.0
- net.kemitix
-
-
-
-
- net.kemitix
- digraph-dependency-maven-plugin
- ${digraph-dependency.version}
-
- ${digraph-dependency.basePackage}
-
-
-
- verify
-
- digraph
-
-
-
-
-
-
-
diff --git a/tiles/enforcer/pom.xml b/tiles/enforcer/pom.xml
deleted file mode 100644
index 9da2f75..0000000
--- a/tiles/enforcer/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- enforcer-tile
- tile
-
-
diff --git a/tiles/enforcer/tile.xml b/tiles/enforcer/tile.xml
deleted file mode 100644
index 6cf8764..0000000
--- a/tiles/enforcer/tile.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
- 1.4.1
- 3.0.4
- 1.8
-
-
-
-
- org.apache.maven.plugins
- maven-enforcer-plugin
- ${maven-enforcer-plugin.version}
-
-
- enforce-maven
- validate
-
- display-info
- enforce
-
-
-
-
-
-
- ${required-maven.version}
-
-
- ${java.version}
-
-
-
-
-
-
-
diff --git a/tiles/huntbugs/pom.xml b/tiles/huntbugs/pom.xml
deleted file mode 100644
index 5a7686a..0000000
--- a/tiles/huntbugs/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- huntbugs-tile
- tile
-
-
diff --git a/tiles/huntbugs/tile.xml b/tiles/huntbugs/tile.xml
deleted file mode 100644
index 26c6c23..0000000
--- a/tiles/huntbugs/tile.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- 0.0.11
-
-
-
-
- one.util
- huntbugs-maven-plugin
- ${huntbugs.version}
-
-
- verify
-
- huntbugs
-
-
-
-
-
-
-
diff --git a/tiles/maven-plugins/pom.xml b/tiles/maven-plugins/pom.xml
deleted file mode 100644
index f6c182d..0000000
--- a/tiles/maven-plugins/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- maven-plugins-tile
- tile
-
-
diff --git a/tiles/maven-plugins/tile.xml b/tiles/maven-plugins/tile.xml
deleted file mode 100644
index 923a35d..0000000
--- a/tiles/maven-plugins/tile.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
- UTF-8
- 3.0.0
- 2.5.2
- 3.6
- 2.5
- 2.4
-
-
-
-
- org.apache.maven.plugins
- maven-clean-plugin
- ${maven-clean-plugin.version}
-
-
- org.apache.maven.plugins
- maven-install-plugin
- ${maven-install-plugin.version}
-
-
- org.apache.maven.plugins
- maven-site-plugin
- ${maven-site-plugin.version}
-
-
- org.codehaus.mojo
- versions-maven-plugin
- ${versions.version}
-
-
- org.apache.maven.plugins
- maven-jxr-plugin
- ${maven-jxr-plugin.version}
-
-
- compile
-
- jxr
-
-
-
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-jxr-plugin
- ${maven-jxr-plugin.version}
-
-
- org.codehaus.mojo
- versions-maven-plugin
- ${versions.version}
-
-
-
- dependency-updates-report
- plugin-updates-report
- property-updates-report
-
-
-
-
-
-
-
diff --git a/tiles/pitest/pom.xml b/tiles/pitest/pom.xml
deleted file mode 100644
index 4934674..0000000
--- a/tiles/pitest/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- pitest-tile
- tile
-
-
diff --git a/tiles/pitest/tile.xml b/tiles/pitest/tile.xml
deleted file mode 100644
index 0a9fd46..0000000
--- a/tiles/pitest/tile.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
- 1.2
- 1.2.0
- 0
- 0
- false
- true
-
-
-
-
- org.pitest
- highwheel-maven
- ${highwheel-maven.version}
-
-
- verify
-
- analyse
-
-
-
-
-
- org.pitest
- pitest-maven
- ${pitest.version}
-
-
- verify
-
- mutationCoverage
-
-
-
-
- ${pitest.skip}
- false
- *.Immutable*
- ${pitest.coverage}
- ${pitest.mutation}
- ${pitest.failWhenNoMutations}
-
-
-
-
-
-
-
- org.pitest
- pitest-maven
- ${pitest.version}
-
-
-
- report
-
-
-
-
-
-
-
diff --git a/tiles/pmd/pom.xml b/tiles/pmd/pom.xml
deleted file mode 100644
index e219976..0000000
--- a/tiles/pmd/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- pmd-tile
- tile
-
-
diff --git a/tiles/pmd/tile.xml b/tiles/pmd/tile.xml
deleted file mode 100644
index 231f95c..0000000
--- a/tiles/pmd/tile.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
- 3.8
-
-
-
-
- org.apache.maven.plugins
- maven-pmd-plugin
- ${maven-pmd-plugin.version}
-
- true
- true
- false
-
-
-
- pmd
- verify
-
- pmd
-
-
-
- cpd
- verify
-
- cpd
-
-
-
-
-
- io.repaint.maven
- tiles-maven-plugin
- ${tiles-maven-plugin.version}
- true
-
-
- net.kemitix.tiles:maven-plugins-tile:${kemitix-tiles.version}
-
-
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-pmd-plugin
- ${maven-pmd-plugin.version}
-
- true
-
-
-
-
-
diff --git a/tiles/pom.xml b/tiles/pom.xml
deleted file mode 100644
index ca51ded..0000000
--- a/tiles/pom.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
- 4.0.0
-
-
- net.kemitix
- kemitix-parent
- 5.0.0
-
- net.kemitix.tiles
- kemitix-maven-tiles
- 0.1.0
-
- pom
-
-
- tiles-parent
- checkstyle
- compiler
- release
- digraph
- enforcer
- coverage
- testing
- maven-plugins
- pitest
- huntbugs
- pmd
- all
-
-
-
diff --git a/tiles/release/pom.xml b/tiles/release/pom.xml
deleted file mode 100644
index 0512285..0000000
--- a/tiles/release/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- release-tile
- tile
-
-
diff --git a/tiles/release/tile.xml b/tiles/release/tile.xml
deleted file mode 100644
index dc28eba..0000000
--- a/tiles/release/tile.xml
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
- 3.0.0-M1
- 3.0.1
- 1.6
- 2.8.2
-
-
-
- release
-
-
-
- org.apache.maven.plugins
- maven-javadoc-plugin
- ${maven-javadoc-plugin.version}
-
-
- attach-javadocs
- package
-
- jar
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-source-plugin
- ${maven-source-plugin.version}
-
-
- attach-sources
- package
-
- jar-no-fork
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-gpg-plugin
- ${maven-gpg-plugin.version}
-
- ${gpg.passphrase}
-
-
-
- sign-artifacts
- package
-
- sign
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-deploy-plugin
- ${maven-deploy-plugin.version}
-
-
-
-
-
-
- sonatype-nexus-snapshots
- Sonatype Nexus Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
-
-
- sonatype-nexus-staging
- Nexus Release Repository
- https://oss.sonatype.org/service/local/staging/deploy/maven2/
-
-
-
-
-
diff --git a/tiles/testing/pom.xml b/tiles/testing/pom.xml
deleted file mode 100644
index 8005cc9..0000000
--- a/tiles/testing/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- tiles-parent
- net.kemitix.tiles
- 0.1.0
- ../tiles-parent/pom.xml
-
- 4.0.0
-
- testing-tile
- tile
-
-
diff --git a/tiles/testing/tile.xml b/tiles/testing/tile.xml
deleted file mode 100644
index 4e139d2..0000000
--- a/tiles/testing/tile.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
- UTF-8
- 2.20.1
- 2.20.1
-
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- ${maven-surefire-plugin.version}
-
-
- org.apache.maven.plugins
- maven-failsafe-plugin
- ${maven-failsafe-plugin.version}
-
-
- integration-test
-
- integration-test
-
-
-
- verify
-
- verify
-
-
-
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-surefire-report-plugin
- ${maven-surefire-plugin.version}
-
-
-
-
diff --git a/tiles/tiles-parent/pom.xml b/tiles/tiles-parent/pom.xml
deleted file mode 100644
index ae73fa4..0000000
--- a/tiles/tiles-parent/pom.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- kemitix-maven-tiles
- net.kemitix.tiles
- 0.1.0
-
- 4.0.0
-
- tiles-parent
- pom
-
-
- 2.10
-
-
-
-
-
- io.repaint.maven
- tiles-maven-plugin
- ${tiles-maven-plugin.version}
- true
-
-
-
-