Permalink
Show file tree
Hide file tree
12 changes: 4 additions & 8 deletions
12
.../java/com/zrlog/service/PluginHelper.java → ...java/com/zrlog/web/util/PluginHelper.java
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fix #48 forget remove token from ThreadLocal
- Loading branch information
Showing
4 changed files
with
119 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,104 @@ | ||
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <groupId>com.zrlog</groupId> | ||
| <artifactId>zrlog</artifactId> | ||
| <version>2.1.0</version> | ||
| <modules> | ||
| <module>web</module> | ||
| <module>service</module> | ||
| <module>common</module> | ||
| <module>data</module> | ||
| </modules> | ||
| <packaging>pom</packaging> | ||
| <name>zrlog</name> | ||
| <description>ZrLog是使用Java开发的博客/CMS程序,具有简约,易用,组件化,内存占用低等特点。自带Markdown编辑器,让更多的精力放在写作上,而不是花费大量时间在学习程序的使用上。 | ||
| </description> | ||
| <url>https://www.zrlog.com</url> | ||
|
|
||
| <properties> | ||
| <java.version>1.8</java.version> | ||
| <jfinal.version>3.3</jfinal.version> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <servlet.version>3.1.0</servlet.version> | ||
| </properties> | ||
|
|
||
| <developers> | ||
| <developer> | ||
| <name>xiaochun</name> | ||
| <email>xchun90@163.com</email> | ||
| <url>http://blog.94fzb.com</url> | ||
| <roles> | ||
| <role>owner</role> | ||
| </roles> | ||
| </developer> | ||
| <developer> | ||
| <name>weekdragon</name> | ||
| <email>790774717@qq.com</email> | ||
| <url>https://www.weekdragon.cn</url> | ||
| <roles> | ||
| <role>developer</role> | ||
| </roles> | ||
| </developer> | ||
| <developer> | ||
| <name>e-lionel</name> | ||
| <email>lionel0724@163.com</email> | ||
| <url>https://github.com/e-lionel</url> | ||
| <roles> | ||
| <role>reporter</role> | ||
| </roles> | ||
| </developer> | ||
| </developers> | ||
|
|
||
| <issueManagement> | ||
| <system>Github Issue</system> | ||
| <url>http://github.com/94fzb/zrlog</url> | ||
| </issueManagement> | ||
|
|
||
| <licenses> | ||
| <license> | ||
| <name>The Apache Software License, Version 2.0</name> | ||
| <url>http://apache.org/licenses/LICENSE-2.0.txt</url> | ||
| </license> | ||
| </licenses> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-api</artifactId> | ||
| <version>1.7.12</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-log4j12</artifactId> | ||
| <version>1.7.12</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>log4j</groupId> | ||
| <artifactId>log4j</artifactId> | ||
| <version>1.2.17</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| <version>4.12</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <sourceDirectory>src/main/java</sourceDirectory> | ||
| <testSourceDirectory>src/test/java</testSourceDirectory> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <configuration> | ||
| <source>${java.version}</source> | ||
| <target>${java.version}</target> | ||
| <encoding>UTF-8</encoding> | ||
| </configuration> | ||
| <version>2.3.2</version> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters