Commit 41df9c60 authored by 李良停's avatar 李良停

llt

parent 542ab060
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.settings .settings
/.idea/ /.idea/
*.jar
*.war *.war
*.ear *.ear
...@@ -22,3 +22,4 @@ MANIFEST.MF ...@@ -22,3 +22,4 @@ MANIFEST.MF
overlays/ overlays/
sh-authcenter-agent/src/test/ sh-authcenter-agent/src/test/
sh-authcenter-log/src/test/ sh-authcenter-log/src/test/
eden-authcenter-log/src/main/resources/
...@@ -31,6 +31,45 @@ ...@@ -31,6 +31,45 @@
<artifactId>eden-authcenter-log</artifactId> <artifactId>eden-authcenter-log</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.apache.directory.studio</groupId>
<artifactId>org.apache.commons.codec</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-springboot-bootstrap</artifactId>
<version>2.0.6.0014</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alpha-framework-springboot-bootstrap-2.0.6.0014.jar</systemPath>
</dependency>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-springboot-starter</artifactId>
<version>2.0.6.0014</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alpha-framework-springboot-starter-2.0.6.0014.jar</systemPath>
</dependency>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-api</artifactId>
<version>2.0.6.0014</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alpha-framework-api-2.0.6.0014.jar</systemPath>
</dependency>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-core</artifactId>
<version>2.0.6.0014</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alpha-framework-core-2.0.6.0014.jar</systemPath>
</dependency>
<!--因配置外部TOMCAT 而配置--> <!--因配置外部TOMCAT 而配置-->
<dependency> <dependency>
......
package com.chineseall.eden.authcenter.agent; package com.chineseall.eden.authcenter.agent;
import cn.sh.chineseall.framework.starter.annotation.AlphaFrameworkApplication; import cn.sh.chineseall.framework.starter.annotation.AlphaFrameworkApplication;
import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer; import org.springframework.boot.web.support.SpringBootServletInitializer;
......
...@@ -2,6 +2,7 @@ package com.chineseall.eden.authcenter.agent.utils; ...@@ -2,6 +2,7 @@ package com.chineseall.eden.authcenter.agent.utils;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.tomcat.util.codec.binary.Base64; import org.apache.tomcat.util.codec.binary.Base64;
import javax.crypto.*; import javax.crypto.*;
......
...@@ -20,7 +20,35 @@ ...@@ -20,7 +20,35 @@
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
</dependency> </dependency>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-dao-core</artifactId>
<version>2.0.6.0014</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alpha-framework-dao-core-2.0.6.0014.jar</systemPath>
</dependency>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-dao-mongo</artifactId>
<version>2.0.6.0014</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alpha-framework-dao-mongo-2.0.6.0014.jar</systemPath>
</dependency>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-cache-core</artifactId>
<version>2.0.6.0014</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alpha-framework-cache-core-2.0.6.0014.jar</systemPath>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.2.2</version>
</dependency>
</dependencies> </dependencies>
</project> </project>
\ No newline at end of file
...@@ -41,27 +41,21 @@ ...@@ -41,27 +41,21 @@
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
</dependency> </dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>cn.sh.chineseall</groupId>
<artifactId>alpha-framework-api</artifactId>
<version>${alpha-framework-version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
...@@ -174,6 +168,9 @@ ...@@ -174,6 +168,9 @@
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
...@@ -190,21 +187,13 @@ ...@@ -190,21 +187,13 @@
<target>1.8</target> <target>1.8</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
<repositories>
<repository>
<id>public</id>
<url>http://180.167.91.206:5716/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
</project> </project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment