Skip to content

Commit d59aa42

Browse files
authored
Remove animal-sniffer on some projects (#1391)
Signed-off-by: Chris Jackson <chris@cd-jackson.com>
1 parent 5a309b1 commit d59aa42

3 files changed

Lines changed: 47 additions & 54 deletions

File tree

  • com.zsmartsystems.zigbee.autocode
  • com.zsmartsystems.zigbee.console.main
  • com.zsmartsystems.zigbee.console
Lines changed: 35 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,34 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
5-
<groupId>com.zsmartsystems.zigbee</groupId>
6-
<artifactId>com.zsmartsystems.zigbee.autocode</artifactId>
7-
<packaging>jar</packaging>
8-
9-
<properties>
10-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
12-
<maven.main.skip>true</maven.main.skip>
13-
</properties>
14-
15-
<parent>
16-
<groupId>com.zsmartsystems</groupId>
17-
<artifactId>zigbee</artifactId>
18-
<version>1.4.12-SNAPSHOT</version>
19-
</parent>
20-
21-
<build>
22-
<plugins>
23-
<plugin>
24-
<groupId>org.apache.maven.plugins</groupId>
25-
<artifactId>maven-jar-plugin</artifactId>
26-
<version>2.5</version>
27-
</plugin>
28-
29-
<plugin>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.zsmartsystems.zigbee</groupId>
8+
<artifactId>com.zsmartsystems.zigbee.autocode</artifactId>
9+
<packaging>jar</packaging>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14+
<maven.main.skip>true</maven.main.skip>
15+
</properties>
16+
17+
<parent>
18+
<groupId>com.zsmartsystems</groupId>
19+
<artifactId>zigbee</artifactId>
20+
<version>1.4.12-SNAPSHOT</version>
21+
</parent>
22+
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<groupId>org.apache.maven.plugins</groupId>
27+
<artifactId>maven-jar-plugin</artifactId>
28+
<version>2.5</version>
29+
</plugin>
30+
31+
<plugin>
3032
<groupId>org.apache.maven.plugins</groupId>
3133
<artifactId>maven-source-plugin</artifactId>
3234
<executions>
@@ -42,19 +44,14 @@
4244
<groupId>org.codehaus.mojo</groupId>
4345
<artifactId>animal-sniffer-maven-plugin</artifactId>
4446
<configuration>
47+
<skip>true</skip>
4548
</configuration>
46-
<executions>
47-
<execution>
48-
<id>animal-sniffer</id>
49-
<phase />
50-
</execution>
51-
</executions>
5249
</plugin>
53-
</plugins>
54-
</build>
50+
</plugins>
51+
</build>
5552

56-
<dependencies>
53+
<dependencies>
5754

58-
</dependencies>
55+
</dependencies>
5956

6057
</project>

com.zsmartsystems.zigbee.console.main/pom.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46

57
<groupId>com.zsmartsystems.zigbee</groupId>
@@ -119,7 +121,8 @@
119121
<manifest>
120122
<addClasspath>true</addClasspath>
121123
<classpathPrefix>lib/</classpathPrefix>
122-
<mainClass>com.zsmartsystems.zigbee.console.main.ZigBeeConsoleMain</mainClass>
124+
<mainClass>
125+
com.zsmartsystems.zigbee.console.main.ZigBeeConsoleMain</mainClass>
123126
</manifest>
124127
</archive>
125128
</configuration>
@@ -131,7 +134,8 @@
131134
<manifest>
132135
<addClasspath>true</addClasspath>
133136
<classpathPrefix>lib/</classpathPrefix>
134-
<mainClass>com.zsmartsystems.zigbee.console.main.ZigBeeConsoleMain</mainClass>
137+
<mainClass>
138+
com.zsmartsystems.zigbee.console.main.ZigBeeConsoleMain</mainClass>
135139
</manifest>
136140
</archive>
137141
<descriptorRefs>
@@ -152,13 +156,8 @@
152156
<groupId>org.codehaus.mojo</groupId>
153157
<artifactId>animal-sniffer-maven-plugin</artifactId>
154158
<configuration>
159+
<skip>true</skip>
155160
</configuration>
156-
<executions>
157-
<execution>
158-
<id>animal-sniffer</id>
159-
<phase />
160-
</execution>
161-
</executions>
162161
</plugin>
163162
</plugins>
164163
</build>

com.zsmartsystems.zigbee.console/pom.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46

57
<groupId>com.zsmartsystems.zigbee</groupId>
@@ -40,13 +42,8 @@
4042
<groupId>org.codehaus.mojo</groupId>
4143
<artifactId>animal-sniffer-maven-plugin</artifactId>
4244
<configuration>
45+
<skip>true</skip>
4346
</configuration>
44-
<executions>
45-
<execution>
46-
<id>animal-sniffer</id>
47-
<phase />
48-
</execution>
49-
</executions>
5047
</plugin>
5148
</plugins>
5249
</build>

0 commit comments

Comments
 (0)