This repository has been archived by the owner on Feb 3, 2025. It is now read-only.
forked from repaint-io/maven-tiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/repaint-io/maven-tiles/issues/53
illustration of issue with profiles
- Loading branch information
Sparg, Timothy, Vodacom South Africa (External)
authored and
Sparg, Timothy, Vodacom South Africa (External)
committed
Jan 6, 2018
1 parent
d1dc5ba
commit 66e0f9c
Showing
5 changed files
with
140 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,6 @@ target | |
!.gitignore | ||
!.gitattributes | ||
!.gitkeep | ||
|
||
#Intelij | ||
*.iml |
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,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>io.repaint.maven</groupId> | ||
<artifactId>profile-tile-usage</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
|
||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>io.repaint.maven</groupId> | ||
<artifactId>tiles-maven-plugin</artifactId> | ||
<version>2.11-SNAPSHOT</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<filtering>true</filtering> | ||
<tiles> | ||
<tile>io.repaint.maven:profile-issue-tile:1.0.0-SNAPSHOT</tile> | ||
</tiles> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
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,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>io.repaint.maven</groupId> | ||
<artifactId>profile-issue-tile</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<packaging>tile</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>io.repaint.maven</groupId> | ||
<artifactId>tiles-maven-plugin</artifactId> | ||
<version>2.11-SNAPSHOT</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<filtering>true</filtering> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
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,69 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<properties> | ||
<a.chop>dontbe</a.chop> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<version>1.7</version> | ||
<executions> | ||
<execution> | ||
<id>print-antrun1</id> | ||
<phase>validate</phase> | ||
<configuration> | ||
<target> | ||
<echo message="@@@@@@@@@@@@ HELLO! Iam a AntRun 1 Tile"/> | ||
</target> | ||
</configuration> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<activation> | ||
<activeByDefault/> | ||
</activation> | ||
<id>ant-run-in-profile</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<version>1.7</version> | ||
<executions> | ||
<execution> | ||
<id>print-antrun1</id> | ||
<phase>validate</phase> | ||
<configuration> | ||
<target> | ||
<echo message="@@@@@@@@@@@@ HELLO! Iam a AntRun 1 Tile in a *profile*"/> | ||
</target> | ||
</configuration> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
</project> | ||
|
||
|
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