11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<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- <parent >
5- <groupId >org.codehaus.sonar-plugins.cxx</groupId >
6- <artifactId >cxx</artifactId >
7- <version >0.9.6-SNAPSHOT</version >
8- </parent >
9- <artifactId >cxx-lint</artifactId >
10- <name >Cxx :: Lint</name >
11- <packaging >jar</packaging >
12- <dependencies >
13- <dependency >
14- <groupId >${project.groupId} </groupId >
15- <artifactId >cxx-checks</artifactId >
16- <version >${project.version} </version >
17- </dependency >
18- <dependency >
19- <groupId >com.google.code.gson</groupId >
20- <artifactId >gson</artifactId >
21- <version >2.4</version >
22- </dependency >
23- <dependency >
24- <groupId >org.codehaus.sonar</groupId >
25- <artifactId >sonar-check-api</artifactId >
26- <version >4.5.4</version >
27- <type >jar</type >
28- </dependency >
29- <dependency >
30- <groupId >org.codehaus.sonar</groupId >
31- <artifactId >sonar-plugin-api</artifactId >
32- <version >4.5.4</version >
33- <type >jar</type >
34- </dependency >
35- <dependency >
36- <groupId >commons-cli</groupId >
37- <artifactId >commons-cli</artifactId >
38- <version >1.3.1</version >
39- <type >jar</type >
40- </dependency >
41- <dependency >
42- <groupId >junit</groupId >
43- <artifactId >junit</artifactId >
44- <version >4.12</version >
45- <scope >test</scope >
46- </dependency >
47- <dependency >
48- <groupId >org.hamcrest</groupId >
49- <artifactId >hamcrest-core</artifactId >
50- <version >1.3</version >
51- <scope >test</scope >
52- </dependency >
53- </dependencies >
54-
3+ <modelVersion >4.0.0</modelVersion >
4+
5+ <parent >
6+ <groupId >org.sonarsource.sonarqube-plugins.cxx</groupId >
7+ <artifactId >cxx</artifactId >
8+ <version >0.9.6-SNAPSHOT</version >
9+ </parent >
10+
11+ <artifactId >cxx-lint</artifactId >
12+ <name >Cxx :: Lint</name >
13+
14+ <packaging >jar</packaging >
15+
16+ <dependencies >
17+ <dependency >
18+ <groupId >${project.groupId} </groupId >
19+ <artifactId >cxx-checks</artifactId >
20+ <version >${project.version} </version >
21+ </dependency >
22+ <dependency >
23+ <groupId >com.google.code.gson</groupId >
24+ <artifactId >gson</artifactId >
25+ <version >2.4</version >
26+ </dependency >
27+ <dependency >
28+ <groupId >org.sonarsource.sonarqube</groupId >
29+ <artifactId >sonar-check-api</artifactId >
30+ <version >5.4</version >
31+ <type >jar</type >
32+ </dependency >
33+ <dependency >
34+ <groupId >org.sonarsource.sonarqube</groupId >
35+ <artifactId >sonar-plugin-api</artifactId >
36+ <type >jar</type >
37+ </dependency >
38+ <dependency >
39+ <groupId >commons-cli</groupId >
40+ <artifactId >commons-cli</artifactId >
41+ <version >1.3.1</version >
42+ <type >jar</type >
43+ </dependency >
44+ <dependency >
45+ <groupId >junit</groupId >
46+ <artifactId >junit</artifactId >
47+ <scope >test</scope >
48+ </dependency >
49+ <dependency >
50+ <groupId >org.hamcrest</groupId >
51+ <artifactId >hamcrest-core</artifactId >
52+ <version >1.3</version >
53+ <scope >test</scope >
54+ </dependency >
55+ </dependencies >
56+
5557 <build >
5658 <plugins >
57- <plugin >
58- <artifactId >maven-assembly-plugin</artifactId >
59- <configuration >
60- <archive >
61- <manifest >
59+ <plugin >
60+ <artifactId >maven-assembly-plugin</artifactId >
61+ <configuration >
62+ <archive >
63+ <manifest >
6264 <addClasspath >true</addClasspath >
63- <mainClass >org.codehaus.sonarplugins .cxx.cxxlint.CxxLint</mainClass >
65+ <mainClass >org.sonarsource.sonarqubeplugins .cxx.cxxlint.CxxLint</mainClass >
6466 <classpathPrefix >lib/</classpathPrefix >
65- </manifest >
66- </archive >
67- <descriptorRefs >
68- <descriptorRef >jar-with-dependencies</descriptorRef >
69-
70- </descriptorRefs >
71- <finalName >cxx-lint-${project.version} </finalName >
72- <appendAssemblyId >false</appendAssemblyId >
73- </configuration >
74- <executions >
75- <execution >
76- <id >make-assembly</id > <!-- this is used for inheritance merges -->
77- <phase >package</phase > <!-- bind to the packaging phase -->
78- <goals >
79- <goal >single</goal >
80- </goals >
81- </execution >
82- </executions >
83- </plugin >
84-
85-
86-
67+ </manifest >
68+ </archive >
69+ <descriptorRefs >
70+ <descriptorRef >jar-with-dependencies</descriptorRef >
71+ </descriptorRefs >
72+ <finalName >cxx-lint-${project.version} </finalName >
73+ <appendAssemblyId >false</appendAssemblyId >
74+ </configuration >
75+ <executions >
76+ <execution >
77+ <id >make-assembly</id >
78+ <!-- this is used for inheritance merges -->
79+ <phase >package</phase >
80+ <!-- bind to the packaging phase -->
81+ <goals >
82+ <goal >single</goal >
83+ </goals >
84+ </execution >
85+ </executions >
86+ </plugin >
8787 </plugins >
8888 </build >
89-
90- </project >
89+
90+ </project >
0 commit comments