|
23 | 23 | <groupId>org.springframework.boot</groupId>
|
24 | 24 | <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
|
25 | 25 | </dependency>
|
| 26 | + <dependency> |
| 27 | + <groupId>org.springframework.security</groupId> |
| 28 | + <artifactId>spring-security-oauth2-authorization-server</artifactId> |
| 29 | + </dependency> |
26 | 30 | <dependency>
|
27 | 31 | <groupId>org.springframework</groupId>
|
28 | 32 | <artifactId>spring-web</artifactId>
|
|
33 | 37 | <version>${bouncycastle.version}</version>
|
34 | 38 | </dependency>
|
35 | 39 | <dependency>
|
36 |
| - <groupId>org.springframework.security</groupId> |
37 |
| - <artifactId>spring-security-oauth2-authorization-server</artifactId> |
38 |
| - <version>1.2.1</version> |
| 40 | + <groupId>org.jasypt</groupId> |
| 41 | + <artifactId>jasypt</artifactId> |
| 42 | + <version>${jasypt.version}</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.passay</groupId> |
| 46 | + <artifactId>passay</artifactId> |
| 47 | + <version>${passay.version}</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.cryptacular</groupId> |
| 51 | + <artifactId>cryptacular</artifactId> |
| 52 | + <version>${cryptacular.version}</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>com.google.crypto.tink</groupId> |
| 56 | + <artifactId>tink</artifactId> |
| 57 | + <version>${tink.version}</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>com.hierynomus</groupId> |
| 61 | + <artifactId>sshj</artifactId> |
| 62 | + <version>${sshj.version}</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.apache.sshd</groupId> |
| 66 | + <artifactId>sshd-scp</artifactId> |
| 67 | + <version>${apache-scp.version}</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.apache.sshd</groupId> |
| 71 | + <artifactId>sshd-sftp</artifactId> |
| 72 | + <version>${apache-sftp.version}</version> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>com.github.scribejava</groupId> |
| 76 | + <artifactId>scribejava-apis</artifactId> |
| 77 | + <version>${scribejava.version}</version> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>com.sun.xml.bind</groupId> |
| 81 | + <artifactId>jaxb-core</artifactId> |
| 82 | + <version>${jaxb-core.version}</version> |
| 83 | + <scope>runtime</scope> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>javax.xml.bind</groupId> |
| 87 | + <artifactId>jaxb-api</artifactId> |
| 88 | + <version>${jaxb-api.version}</version> |
| 89 | + <scope>runtime</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>com.sun.xml.bind</groupId> |
| 93 | + <artifactId>jaxb-impl</artifactId> |
| 94 | + <version>${jaxb-api.version}</version> |
| 95 | + <scope>runtime</scope> |
39 | 96 | </dependency>
|
40 | 97 | </dependencies>
|
41 | 98 |
|
|
54 | 111 | <plugin>
|
55 | 112 | <groupId>org.apache.maven.plugins</groupId>
|
56 | 113 | <artifactId>maven-compiler-plugin</artifactId>
|
57 |
| - <configuration> |
58 |
| - <source>11</source> |
59 |
| - <target>11</target> |
60 |
| - </configuration> |
61 | 114 | </plugin>
|
62 | 115 | </plugins>
|
63 | 116 | </build>
|
64 | 117 |
|
65 | 118 | <properties>
|
| 119 | + <spring-boot.repackage.skip>true</spring-boot.repackage.skip> <!--Skip repackaging for multiple main classes--> |
66 | 120 | <bouncycastle.version>1.76</bouncycastle.version>
|
| 121 | + <jasypt.version>1.9.2</jasypt.version> |
| 122 | + <passay.version>1.3.1</passay.version> |
| 123 | + <cryptacular.version>1.2.2</cryptacular.version> |
| 124 | + <tink.version>1.2.2</tink.version> |
| 125 | + <sshj.version>0.38.0</sshj.version> |
| 126 | + <apache-scp.version>2.12.1</apache-scp.version> |
| 127 | + <apache-sftp.version>2.12.1</apache-sftp.version> |
| 128 | + <scribejava.version>8.3.3</scribejava.version> |
| 129 | + <jaxb-core.version>2.3.0.1</jaxb-core.version> |
| 130 | + <jaxb-api.version>2.3.1</jaxb-api.version> |
67 | 131 | </properties>
|
68 | 132 |
|
69 | 133 | </project>
|
0 commit comments