-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from chyt/master
Added new Arquillian Liberty Container coordinates
- Loading branch information
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/main/java/net/wasdev/wlp/common/arquillian/util/ArtifactCoordinates.java
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,21 @@ | ||
package net.wasdev.wlp.common.arquillian.util; | ||
|
||
public class ArtifactCoordinates { | ||
|
||
private final String groupId; | ||
private final String artifactId; | ||
|
||
public ArtifactCoordinates(String groupId, String artifactId) { | ||
this.groupId = groupId; | ||
this.artifactId = artifactId; | ||
} | ||
|
||
public String getGroupId() { | ||
return groupId; | ||
} | ||
|
||
public String getArtifactId() { | ||
return artifactId; | ||
} | ||
|
||
} |
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