Skip to content

Commit

Permalink
traffic-bz: add missing xml dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed Dec 18, 2023
1 parent db986f9 commit e3a8272
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions data-collectors/traffic-bz/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ SPDX-FileCopyrightText: NOI Techpark <[email protected]>
SPDX-License-Identifier: CC0-1.0
-->

<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/maven-v4_0_0.xsd">
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>it.bz.idm.bdp</groupId>
<artifactId>dc-traffic-bz</artifactId>
Expand Down Expand Up @@ -50,6 +52,13 @@ SPDX-License-Identifier: CC0-1.0
<artifactId>flexjson</artifactId>
<version>2.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down Expand Up @@ -168,7 +177,7 @@ SPDX-License-Identifier: CC0-1.0
<version>2.21.0</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -194,7 +203,8 @@ SPDX-License-Identifier: CC0-1.0
<configuration>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/DataDispatcherWebServices.wsdl</wsdl>
<wsdl>
${basedir}/src/main/resources/DataDispatcherWebServices.wsdl</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
Expand All @@ -213,4 +223,4 @@ SPDX-License-Identifier: CC0-1.0
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit e3a8272

Please sign in to comment.