|
6 | 6 |
|
7 | 7 | <parent>
|
8 | 8 | <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> |
11 | 11 | </parent>
|
12 | 12 |
|
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> |
15 | 15 | <packaging>jar</packaging>
|
16 | 16 |
|
17 | 17 | <organization>
|
|
27 | 27 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
28 | 28 |
|
29 | 29 | <mainClass>software.xdev.Application</mainClass>
|
| 30 | + |
| 31 | + <org.springframework.boot.version>3.5.6</org.springframework.boot.version> |
30 | 32 | </properties>
|
31 | 33 |
|
| 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 | + |
32 | 47 | <dependencies>
|
33 | 48 | <dependency>
|
34 | 49 | <groupId>software.xdev</groupId>
|
35 |
| - <artifactId>template-placeholder</artifactId> |
| 50 | + <artifactId>spring-security-advanced-authentication-ui</artifactId> |
36 | 51 | <version>${project.version}</version>
|
37 | 52 | </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> |
38 | 79 | </dependencies>
|
39 | 80 |
|
40 | 81 | <build>
|
|
52 | 93 | </compilerArgs>
|
53 | 94 | </configuration>
|
54 | 95 | </plugin>
|
| 96 | + |
55 | 97 | <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> |
59 | 101 | <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> |
72 | 103 | </configuration>
|
73 | 104 | <executions>
|
74 | 105 | <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> |
77 | 107 | <goals>
|
78 |
| - <goal>single</goal> |
| 108 | + <goal>repackage</goal> |
79 | 109 | </goals>
|
| 110 | + <phase>package</phase> |
80 | 111 | </execution>
|
81 | 112 | </executions>
|
82 | 113 | </plugin>
|
|
0 commit comments