Skip to content

Commit a79693c

Browse files
committed
#222 fixed compatibility with jQA 2.7.0
1 parent 0cb8160 commit a79693c

File tree

1 file changed

+12
-22
lines changed

1 file changed

+12
-22
lines changed

java/pom.xml

Lines changed: 12 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,7 @@
99

1010
<artifactId>jqassistant-typescript-plugin</artifactId>
1111

12-
<properties>
13-
<jqa-plugin-common.version>${com.buschmais.jqassistant.version}</jqa-plugin-common.version>
14-
<jqa-json-plugin.version>${com.buschmais.jqassistant.version}</jqa-json-plugin.version>
15-
<lombok.version>1.18.34</lombok.version>
16-
</properties>
17-
1812
<build>
19-
<resources>
20-
<resource>
21-
<directory>${project.basedir}/src/main/resources</directory>
22-
<includes>
23-
<include>META-INF/jqassistant-plugin.xml</include>
24-
</includes>
25-
<filtering>true</filtering>
26-
</resource>
27-
<resource>
28-
<directory>${project.basedir}/src/main/resources</directory>
29-
<excludes>
30-
<exclude>META-INF/jqassistant-plugin.xml</exclude>
31-
</excludes>
32-
<filtering>false</filtering>
33-
</resource>
34-
</resources>
3513
<plugins>
3614
<plugin>
3715
<groupId>org.apache.maven.plugins</groupId>
@@ -47,26 +25,37 @@
4725
<dependency>
4826
<groupId>com.buschmais.jqassistant.core</groupId>
4927
<artifactId>store</artifactId>
28+
<scope>provided</scope>
5029
</dependency>
5130
<dependency>
5231
<groupId>com.buschmais.jqassistant.core</groupId>
5332
<artifactId>scanner</artifactId>
33+
<scope>provided</scope>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.buschmais.jqassistant.core</groupId>
37+
<artifactId>report</artifactId>
38+
<scope>provided</scope>
5439
</dependency>
5540
<dependency>
5641
<groupId>com.buschmais.jqassistant.plugin</groupId>
5742
<artifactId>common</artifactId>
43+
<scope>provided</scope>
5844
</dependency>
5945
<dependency>
6046
<groupId>com.buschmais.xo</groupId>
6147
<artifactId>xo.api</artifactId>
48+
<scope>provided</scope>
6249
</dependency>
6350
<dependency>
6451
<groupId>com.buschmais.jqassistant.plugin</groupId>
6552
<artifactId>json</artifactId>
53+
<scope>provided</scope>
6654
</dependency>
6755
<dependency>
6856
<groupId>org.mapstruct</groupId>
6957
<artifactId>mapstruct</artifactId>
58+
<scope>provided</scope>
7059
</dependency>
7160
<dependency>
7261
<groupId>org.projectlombok</groupId>
@@ -91,6 +80,7 @@
9180
<dependency>
9281
<groupId>com.buschmais.jqassistant.core</groupId>
9382
<artifactId>test</artifactId>
83+
<scope>test</scope>
9484
</dependency>
9585
</dependencies>
9686

0 commit comments

Comments
 (0)