Skip to content

Commit 9547f91

Browse files
committed
Resync III
1 parent becee13 commit 9547f91

File tree

1 file changed

+54
-23
lines changed
  • spring-security-advanced-authentication-ui-demo

1 file changed

+54
-23
lines changed

spring-security-advanced-authentication-ui-demo/pom.xml

Lines changed: 54 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
<parent>
88
<groupId>software.xdev</groupId>
9-
<artifactId>template-placeholder-root</artifactId>
10-
<version>1.0.0-SNAPSHOT</version>
9+
<artifactId>spring-security-advanced-authentication-ui-root</artifactId>
10+
<version>2.1.1-SNAPSHOT</version>
1111
</parent>
1212

13-
<artifactId>template-placeholder-demo</artifactId>
14-
<version>1.0.0-SNAPSHOT</version>
13+
<artifactId>spring-security-advanced-authentication-ui-demo</artifactId>
14+
<version>2.1.1-SNAPSHOT</version>
1515
<packaging>jar</packaging>
1616

1717
<organization>
@@ -27,14 +27,55 @@
2727
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2828

2929
<mainClass>software.xdev.Application</mainClass>
30+
31+
<org.springframework.boot.version>3.5.6</org.springframework.boot.version>
3032
</properties>
3133

34+
<dependencyManagement>
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.springframework.boot</groupId>
38+
<artifactId>spring-boot-dependencies</artifactId>
39+
<version>${org.springframework.boot.version}</version>
40+
<type>pom</type>
41+
<scope>import</scope>
42+
</dependency>
43+
</dependencies>
44+
</dependencyManagement>
45+
46+
3247
<dependencies>
3348
<dependency>
3449
<groupId>software.xdev</groupId>
35-
<artifactId>template-placeholder</artifactId>
50+
<artifactId>spring-security-advanced-authentication-ui</artifactId>
3651
<version>${project.version}</version>
3752
</dependency>
53+
54+
<dependency>
55+
<groupId>org.springframework.boot</groupId>
56+
<artifactId>spring-boot-starter-web</artifactId>
57+
</dependency>
58+
<dependency>
59+
<groupId>org.springframework.boot</groupId>
60+
<artifactId>spring-boot-starter-security</artifactId>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.springframework.boot</groupId>
64+
<artifactId>spring-boot-starter-oauth2-client</artifactId>
65+
</dependency>
66+
67+
<!-- Required to showcase passkeys -->
68+
<dependency>
69+
<groupId>com.webauthn4j</groupId>
70+
<artifactId>webauthn4j-core</artifactId>
71+
<version>0.29.5.RELEASE</version>
72+
</dependency>
73+
74+
<dependency>
75+
<groupId>org.springframework.boot</groupId>
76+
<artifactId>spring-boot-devtools</artifactId>
77+
<optional>true</optional>
78+
</dependency>
3879
</dependencies>
3980

4081
<build>
@@ -52,31 +93,21 @@
5293
</compilerArgs>
5394
</configuration>
5495
</plugin>
96+
5597
<plugin>
56-
<groupId>org.apache.maven.plugins</groupId>
57-
<artifactId>maven-assembly-plugin</artifactId>
58-
<version>3.7.1</version>
98+
<groupId>org.springframework.boot</groupId>
99+
<artifactId>spring-boot-maven-plugin</artifactId>
100+
<version>${org.springframework.boot.version}</version>
59101
<configuration>
60-
<archive>
61-
<manifest>
62-
<mainClass>${mainClass}</mainClass>
63-
</manifest>
64-
<manifestEntries>
65-
<Multi-Release>true</Multi-Release>
66-
</manifestEntries>
67-
</archive>
68-
<descriptorRefs>
69-
<descriptorRef>jar-with-dependencies</descriptorRef>
70-
</descriptorRefs>
71-
<appendAssemblyId>false</appendAssemblyId>
102+
<mainClass>${mainClass}</mainClass>
72103
</configuration>
73104
<executions>
74105
<execution>
75-
<id>make-assembly</id> <!-- this is used for inheritance merges -->
76-
<phase>package</phase> <!-- bind to the packaging phase -->
106+
<id>repackage</id>
77107
<goals>
78-
<goal>single</goal>
108+
<goal>repackage</goal>
79109
</goals>
110+
<phase>package</phase>
80111
</execution>
81112
</executions>
82113
</plugin>

0 commit comments

Comments
 (0)