sdmx-dl-standalone
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-standalone</artifactId>
<version>3.2.0</version>
</dependency><?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/maven-v4_0_0.xsd">
<parent>
<artifactId>sdmx-dl-parent</artifactId>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<version>3.2.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sdmx-dl-standalone</artifactId>
<name>sdmx-dl-standalone</name>
<description>Easily download official statistics - Standalone</description>
<url>https://github.com/nbbrd/sdmx-dl</url>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>list-runtime-dependencies</id>
<phase>generate-test-resources</phase>
<goals>
<goal>resolve</goal>
</goals>
<configuration>
<includeScope>runtime</includeScope>
<outputFile>${project.build.testOutputDirectory}/runtime-dependencies.txt</outputFile>
<outputScope>false</outputScope>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>standalone-step1</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>**/module-info.class</exclude>
<exclude>**/pom.properties</exclude>
<exclude>**/pom.xml</exclude>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/NOTICE</exclude>
<exclude>META-INF/MSFTSIG*</exclude>
<exclude>**/*.proto</exclude>
<exclude>**/proguard/*</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer />
<transformer />
<transformer />
</transformers>
<relocations>
<relocation>
<pattern>sdmxdl.format</pattern>
<shadedPattern>standalone_sdmxdl.sdmxdl.format</shadedPattern>
</relocation>
<relocation>
<pattern>sdmxdl.provider</pattern>
<shadedPattern>standalone_sdmxdl.sdmxdl.provider</shadedPattern>
</relocation>
<relocation>
<pattern>internal</pattern>
<shadedPattern>standalone_sdmxdl.internal</shadedPattern>
</relocation>
<relocation>
<pattern>nbbrd</pattern>
<shadedPattern>standalone_sdmxdl.nbbrd</shadedPattern>
</relocation>
<relocation>
<pattern>com.esotericsoftware</pattern>
<shadedPattern>standalone_sdmxdl.com.esotericsoftware</shadedPattern>
</relocation>
<relocation>
<pattern>com.github.tuupertunut</pattern>
<shadedPattern>standalone_sdmxdl.com.github.tuupertunut</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.gson</pattern>
<shadedPattern>standalone_sdmxdl.com.google.gson</shadedPattern>
</relocation>
<relocation>
<pattern>nl.altindag</pattern>
<shadedPattern>standalone_sdmxdl.nl.altindag</shadedPattern>
</relocation>
<relocation>
<pattern>com.azure</pattern>
<shadedPattern>standalone_sdmxdl.com.azure</shadedPattern>
</relocation>
<relocation>
<pattern>com.microsoft</pattern>
<shadedPattern>standalone_sdmxdl.com.microsoft</shadedPattern>
</relocation>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>standalone_sdmxdl.org.slf4j</shadedPattern>
</relocation>
</relocations>
<createDependencyReducedPom>true</createDependencyReducedPom>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.moditect</groupId>
<artifactId>moditect-maven-plugin</artifactId>
<version>1.3.0.Final</version>
<executions>
<execution>
<id>standalone-step2</id>
<phase>package</phase>
<goals>
<goal>generate-module-info</goal>
</goals>
<configuration>
<modules>
<module>
<artifact>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
</artifact>
<moduleInfo>
<name>sdmxdl.api</name>
<exports>!standalone_sdmxdl*;
*;</exports>
<addServiceUses>true</addServiceUses>
</moduleInfo>
</module>
</modules>
<outputDirectory>${project.build.directory}</outputDirectory>
<jdepsExtraArgs>--ignore-missing-deps</jdepsExtraArgs>
</configuration>
</execution>
<execution>
<id>standalone-step3</id>
<phase>package</phase>
<goals>
<goal>add-module-info</goal>
</goals>
<configuration>
<module>
<moduleInfoFile>${project.build.directory}/sdmxdl.api/module-info.java</moduleInfoFile>
</module>
<overwriteExistingFiles>true</overwriteExistingFiles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.46</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.nbbrd.java-design-util</groupId>
<artifactId>java-design-processor</artifactId>
<version>1.10.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-api</artifactId>
<version>3.2.0</version>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.nbbrd.sdmx-dl</groupId>
<artifactId>sdmx-dl-format-xml</artifactId>
<version>3.2.0</version>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>6.1.3</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-params</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>byte-buddy</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>