Skip to content

Commit 90d0d5d

Browse files
committed
Refactoring package name
1 parent 8cbfc23 commit 90d0d5d

23 files changed

Lines changed: 357 additions & 79 deletions

pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@
5858
<artifactId>resteasy-jackson-provider</artifactId>
5959
<version>3.0.8.Final</version>
6060
</dependency>
61+
<dependency>
62+
<groupId>junit</groupId>
63+
<artifactId>junit</artifactId>
64+
<scope>test</scope>
65+
<version>4.11</version>
66+
</dependency>
6167
</dependencies>
6268

6369
<build>
@@ -72,4 +78,42 @@
7278
</plugin>
7379
</plugins>
7480
</build>
81+
82+
<profiles>
83+
<profile>
84+
<id>unit</id>
85+
<activation>
86+
<activeByDefault>true</activeByDefault>
87+
</activation>
88+
<build>
89+
<plugins>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-surefire-plugin</artifactId>
93+
<configuration>
94+
<groups>com.nirmal.kubernetes.java.client.UnitTests</groups>
95+
</configuration>
96+
</plugin>
97+
</plugins>
98+
</build>
99+
</profile>
100+
<profile>
101+
<id>live</id>
102+
<build>
103+
<plugins>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-surefire-plugin</artifactId>
107+
<configuration>
108+
<groups>com.nirmal.kubernetes.java.client.LiveTests</groups>
109+
<systemPropertyVariables>
110+
<kubernetes.api.endpoint>${kubernetes.api.endpoint}</kubernetes.api.endpoint>
111+
<docker.image>${docker.image}</docker.image>
112+
</systemPropertyVariables>
113+
</configuration>
114+
</plugin>
115+
</plugins>
116+
</build>
117+
</profile>
118+
</profiles>
75119
</project>

0 commit comments

Comments
 (0)