mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
Resolve "Maven Central pom.xml is dependency-reduced"
This commit is contained in:
parent
9f25e20108
commit
c29dd78b48
3 changed files with 19 additions and 9 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -36,6 +36,7 @@ src/generated
|
|||
.factorypath
|
||||
.idea/
|
||||
.settings/
|
||||
.externalToolBuilders/
|
||||
.vscode
|
||||
*.code-workspace
|
||||
*.xpr
|
||||
|
|
@ -46,3 +47,8 @@ xrechnung
|
|||
.DS_Store
|
||||
andre*-simple.xml
|
||||
somePrefix*.xml
|
||||
|
||||
# 2.0 stuff
|
||||
api/
|
||||
cli/
|
||||
core/
|
||||
|
|
|
|||
|
|
@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 1.6.1 - work in progress
|
||||
|
||||
### Changed
|
||||
|
||||
- (BUILD) [#176] The Maven Central deployed pom.xml properly includes runtime dependencies
|
||||
|
||||
## 1.6.0 - 2025-11-07
|
||||
|
||||
|
|
|
|||
17
pom.xml
17
pom.xml
|
|
@ -80,17 +80,16 @@
|
|||
<version>${version.lombok}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sf.saxon</groupId>
|
||||
<artifactId>Saxon-HE</artifactId>
|
||||
<version>${version.saxon-he}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>${version.slf4j}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sf.saxon</groupId>
|
||||
<artifactId>Saxon-HE</artifactId>
|
||||
<version>${version.saxon-he}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>info.picocli</groupId>
|
||||
<artifactId>picocli</artifactId>
|
||||
|
|
@ -180,7 +179,7 @@
|
|||
<plugin>
|
||||
<groupId>org.sonatype.central</groupId>
|
||||
<artifactId>central-publishing-maven-plugin</artifactId>
|
||||
<version>0.8.0</version>
|
||||
<version>0.10.0</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<publishingServerId>central</publishingServerId>
|
||||
|
|
@ -275,15 +274,15 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.6.0</version>
|
||||
<version>3.6.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>jdk11+</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||
<shadedArtifactAttached>true</shadedArtifactAttached>
|
||||
<shadedClassifierName>standalone</shadedClassifierName>
|
||||
<transformers>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue