Skip to content

Commit c754c05

Browse files
committed
build: Uberjar on demand only
1 parent 55c399b commit c754c05

File tree

2 files changed

+26
-18
lines changed

2 files changed

+26
-18
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [0.8.0] - 2024-08-??
7+
## [0.8.0] - 2024-08-09
88

99
### Added
1010
- Subaccounts API

pom.xml

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -190,23 +190,6 @@
190190
<target>${java.version}</target>
191191
</configuration>
192192
</plugin>
193-
<plugin>
194-
<artifactId>maven-assembly-plugin</artifactId>
195-
<version>3.7.1</version>
196-
<executions>
197-
<execution>
198-
<phase>package</phase>
199-
<goals>
200-
<goal>single</goal>
201-
</goals>
202-
<configuration>
203-
<descriptorRefs>
204-
<descriptorRef>jar-with-dependencies</descriptorRef>
205-
</descriptorRefs>
206-
</configuration>
207-
</execution>
208-
</executions>
209-
</plugin>
210193
<plugin>
211194
<groupId>org.jetbrains.dokka</groupId>
212195
<artifactId>dokka-maven-plugin</artifactId>
@@ -277,5 +260,30 @@
277260
</plugins>
278261
</build>
279262
</profile>
263+
264+
<profile>
265+
<id>fat-jar</id>
266+
<build>
267+
<plugins>
268+
<plugin>
269+
<artifactId>maven-assembly-plugin</artifactId>
270+
<version>3.7.1</version>
271+
<executions>
272+
<execution>
273+
<phase>package</phase>
274+
<goals>
275+
<goal>single</goal>
276+
</goals>
277+
<configuration>
278+
<descriptorRefs>
279+
<descriptorRef>jar-with-dependencies</descriptorRef>
280+
</descriptorRefs>
281+
</configuration>
282+
</execution>
283+
</executions>
284+
</plugin>
285+
</plugins>
286+
</build>
287+
</profile>
280288
</profiles>
281289
</project>

0 commit comments

Comments
 (0)