Skip to content

Commit

Permalink
Add Maven BOM
Browse files Browse the repository at this point in the history
  • Loading branch information
charphi committed Feb 15, 2022
1 parent 9d840da commit 5643248
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Add parameters validity check [#138](https://github.com/nbbrd/sdmx-dl/issues/138)
- Add source from El Salvador Labour Market Information System [#202](https://github.com/nbbrd/sdmx-dl/issues/202)
- Add multi-language descriptions in SdmxWebSource [#203](https://github.com/nbbrd/sdmx-dl/issues/203)
- Add Maven BOM

### Changed

Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
<module>sdmx-dl-provider-connectors</module>
<module>sdmx-dl-testing</module>
<module>sdmx-dl-cli</module>
<module>sdmx-dl-bom</module>
</modules>

<profiles>
Expand Down
74 changes: 74 additions & 0 deletions sdmx-dl-bom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-parent</artifactId>
<version>3.0.0-beta.6-SNAPSHOT</version>
</parent>

<artifactId>sdmx-dl-bom</artifactId>
<packaging>pom</packaging>

<name>sdmx-dl-bom</name>
<description>Download SDMX data - Bill of Materials</description>
<url>https://github.com/nbbrd/sdmx-dl</url>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-cli</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-format-csv</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-format-kryo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-format-xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-provider-connectors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-provider-ri</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-provider-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-tck</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-testing</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 5643248

Please sign in to comment.