Skip to content
This repository was archived by the owner on Jun 18, 2023. It is now read-only.

Commit c3c7c89

Browse files
author
pavlyi1
committed
AuthTools v1.1
1 parent e544093 commit c3c7c89

File tree

58 files changed

+894
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+894
-73
lines changed

.classpath

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
10+
<attributes>
11+
<attribute name="test" value="true"/>
12+
<attribute name="optional" value="true"/>
13+
<attribute name="maven.pomderived" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
17+
<attributes>
18+
<attribute name="maven.pomderived" value="true"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
22+
<attributes>
23+
<attribute name="maven.pomderived" value="true"/>
24+
</attributes>
25+
</classpathentry>
26+
<classpathentry kind="output" path="target/classes"/>
27+
</classpath>

.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>AuthTools</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/test/java=UTF-8
4+
encoding/<project>=UTF-8
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.8
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
11+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
13+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
14+
org.eclipse.jdt.core.compiler.release=disabled
15+
org.eclipse.jdt.core.compiler.source=1.8
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

pom.xml

Lines changed: 19 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,24 @@
7575
<version>1.7.2</version>
7676
</dependency>
7777

78+
<dependency>
79+
<groupId>org.mongodb</groupId>
80+
<artifactId>mongodb-driver</artifactId>
81+
<version>3.11.3</version>
82+
</dependency>
83+
84+
<dependency>
85+
<groupId>org.apache.logging.log4j</groupId>
86+
<artifactId>log4j-api</artifactId>
87+
<version>2.9.0</version>
88+
</dependency>
89+
90+
<dependency>
91+
<groupId>ch.qos.logback</groupId>
92+
<artifactId>logback-classic</artifactId>
93+
<version>1.2.3</version>
94+
</dependency>
95+
7896

7997

8098

@@ -89,6 +107,7 @@
89107
<version>1.8-R0.1-SNAPSHOT</version>
90108
<scope>provided</scope>
91109
</dependency>
110+
92111
<dependency>
93112
<groupId>org.spigotmc</groupId>
94113
<artifactId>spigot-api</artifactId>
@@ -110,40 +129,12 @@
110129
<scope>provided</scope>
111130
</dependency>
112131

113-
<dependency>
114-
<groupId>org.spigotmc</groupId>
115-
<artifactId>spigot-api</artifactId>
116-
<version>1-12-R0.1-SNAPSHOT</version>
117-
<scope>provided</scope>
118-
</dependency>
119-
120132
<dependency>
121133
<groupId>org.spigotmc</groupId>
122134
<artifactId>spigot-api</artifactId>
123135
<version>1.13-R0.1-SNAPSHOT</version>
124136
<scope>provided</scope>
125137
</dependency>
126-
127-
<dependency>
128-
<groupId>org.spigotmc</groupId>
129-
<artifactId>spigot-api</artifactId>
130-
<version>1.14-R0.1-SNAPSHOT</version>
131-
<scope>provided</scope>
132-
</dependency>
133-
134-
<dependency>
135-
<groupId>org.spigotmc</groupId>
136-
<artifactId>spigot-api</artifactId>
137-
<version>1.15-R0.1-SNAPSHOT</version>
138-
<scope>provided</scope>
139-
</dependency>
140-
141-
<dependency>
142-
<groupId>org.spigotmc</groupId>
143-
<artifactId>spigot-api</artifactId>
144-
<version>1.16.1-R0.1-SNAPSHOT</version>
145-
<scope>provided</scope>
146-
</dependency>
147138
</dependencies>
148139

149140
<build>

src/main/java/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
###################################
22
# #
3-
# AuthTools v1.0 #
3+
# AuthTools v1.1 #
44
# #
55
# Author: Pavlyi #
66
# Website: http://pavlyi.eu #
@@ -31,6 +31,12 @@ connection:
3131
sqlite:
3232
# SQLite file name
3333
fileName: sqlite.db
34+
35+
mongodb:
36+
cluster: cluster
37+
database: database
38+
username: username
39+
password: password
3440

3541
settings:
3642
# Should we hook into AuthMe?

src/main/java/messages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
###################################
22
# #
3-
# AuthTools v1.0 #
3+
# AuthTools v1.1 #
44
# #
55
# Author: Pavlyi #
66
# Website: http://pavlyi.eu #

0 commit comments

Comments
 (0)