Skip to content

Commit 618d120

Browse files
Merge pull request #16 from CommonWorkflowScheduler/removeDependencies
Remove dependencies
2 parents 7ae44bd + 842104a commit 618d120

File tree

2 files changed

+11
-61
lines changed

2 files changed

+11
-61
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y maven && rm -rf /var/lib/apt/lists/*
66
COPY pom.xml .
77
RUN mvn dependency:go-offline --no-transfer-progress
88

9-
COPY src/ ./src/
9+
COPY src/main/ ./src/main/
1010
RUN mvn package --no-transfer-progress -DskipTests
1111

1212
FROM eclipse-temurin:21-jre-jammy

pom.xml

+10-60
Original file line numberDiff line numberDiff line change
@@ -49,25 +49,12 @@
4949
<version>7.1.0</version>
5050
</dependency>
5151

52-
<dependency>
53-
<groupId>org.javatuples</groupId>
54-
<artifactId>javatuples</artifactId>
55-
<version>1.2</version>
56-
</dependency>
57-
5852
<dependency>
5953
<groupId>org.projectlombok</groupId>
6054
<artifactId>lombok</artifactId>
6155
<scope>provided</scope>
6256
</dependency>
6357

64-
<dependency>
65-
<groupId>org.mockito</groupId>
66-
<artifactId>mockito-inline</artifactId>
67-
<version>5.2.0</version>
68-
<scope>test</scope>
69-
</dependency>
70-
7158
<dependency>
7259
<groupId>org.springframework.boot</groupId>
7360
<artifactId>spring-boot-starter-web</artifactId>
@@ -107,12 +94,6 @@
10794
<version>2.8.5</version>
10895
</dependency>
10996

110-
<dependency>
111-
<groupId>ch.qos.logback</groupId>
112-
<artifactId>logback-core</artifactId>
113-
<version>1.5.17</version>
114-
</dependency>
115-
11697
<dependency>
11798
<groupId>com.fasterxml.jackson.core</groupId>
11899
<artifactId>jackson-databind</artifactId>
@@ -125,12 +106,6 @@
125106
<version>2.18.3</version>
126107
</dependency>
127108

128-
<dependency>
129-
<groupId>com.fasterxml.jackson.core</groupId>
130-
<artifactId>jackson-annotations</artifactId>
131-
<version>3.0-rc1</version>
132-
</dependency>
133-
134109
<dependency>
135110
<groupId>org.apache.commons</groupId>
136111
<artifactId>commons-math3</artifactId>
@@ -143,45 +118,10 @@
143118
<version>9.12.4544</version>
144119
</dependency>
145120

146-
<dependency>
147-
<groupId>org.springframework.boot</groupId>
148-
<artifactId>spring-boot-starter-validation</artifactId>
149-
</dependency>
150-
151121
</dependencies>
152122

153123
<build>
154124
<plugins>
155-
<plugin>
156-
<groupId>org.apache.maven.plugins</groupId>
157-
<artifactId>maven-shade-plugin</artifactId>
158-
<executions>
159-
<execution>
160-
<phase>package</phase>
161-
<goals>
162-
<goal>shade</goal>
163-
</goals>
164-
<configuration>
165-
<finalName>cws</finalName>
166-
<minimizeJar>true</minimizeJar>
167-
<transformers>
168-
<transformer
169-
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
170-
<resource>META-INF/spring.handlers</resource>
171-
</transformer>
172-
<transformer
173-
implementation="org.springframework.boot.maven.PropertiesMergingResourceTransformer">
174-
<resource>META-INF/spring.factories</resource>
175-
</transformer>
176-
<transformer
177-
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
178-
<resource>META-INF/spring.schemas</resource>
179-
</transformer>
180-
</transformers>
181-
</configuration>
182-
</execution>
183-
</executions>
184-
</plugin>
185125
<plugin>
186126
<groupId>org.jacoco</groupId>
187127
<artifactId>jacoco-maven-plugin</artifactId>
@@ -224,13 +164,23 @@
224164
<groupId>org.springframework.boot</groupId>
225165
<artifactId>spring-boot-maven-plugin</artifactId>
226166
<executions>
167+
<execution>
168+
<goals>
169+
<goal>repackage</goal>
170+
</goals>
171+
</execution>
227172
<execution>
228173
<id>build-info</id>
229174
<goals>
230175
<goal>build-info</goal>
231176
</goals>
232177
</execution>
233178
</executions>
179+
<configuration>
180+
<layers>
181+
<enabled>true</enabled>
182+
</layers>
183+
</configuration>
234184
</plugin>
235185
</plugins>
236186
</build>

0 commit comments

Comments
 (0)