Skip to content

Commit 8cc15c4

Browse files
committed
Initial standalone release
0 parents  commit 8cc15c4

File tree

641 files changed

+57412
-0
lines changed

Some content is hidden

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

641 files changed

+57412
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
hs_err*
2+
*.idea
3+
*.iml
4+
*.log
5+
target
6+
dependency-reduced-pom.xml

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Avicus Network
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# AvicusNetwork
2+
A **massive** maven project of all of our private plugins.
3+
4+
# Plugins:
5+
6+
## Atlas
7+
Runs matches, parses XML, and generates docs.
8+
### Core
9+
The main plugin. This holds the general parsing infrastructure for maps and running matches.
10+
This component holds the functionality which loads the rest of the external jars.
11+
### Competitive-Objectives
12+
Holds parsing and data classes for all objectives related to competitive.
13+
### Docs-Generator
14+
Holds code for generating the docs.avicus.net documentation files from the documentation in each file.
15+
### Arcade
16+
Holds modules for the arcade gamemodes.
17+
### Walls
18+
Holds the walls component and special kits.
19+
20+
## Atrio
21+
This is the lobby plugin. It handles basic lobby things such as portals and jump pads.
22+
23+
## Hook
24+
### Core
25+
This is used to be where all the DB stuff was, but then Magma came along. It's kinda useless.
26+
### Discord
27+
The legacy discord bot. This runs user registration and the such. This is slowly being moved to the ruby app.
28+
### TeamSpeak
29+
The teamspeak bot. Handles user registration and ranks. Useless as of 12/7/17.
30+
### Bukkit
31+
Bukkit plugin which handles database stuff. This is becoming more and more obsolete as things are being moved to Magma.
32+
This is compiled after Atlas, so it allows us to use Atlas things. T
33+
his runs on servers without Atlas, however, so checks should be made to ensure Atlas before including classes.
34+
35+
## Magma
36+
### Core
37+
Core API and database connections live here. This runs on every server bukkit/bungee.
38+
### Bungee
39+
The bungee plugin. Handles user registration and MOTDs.
40+
### Bukkit
41+
Core code for most of the stuff we do. Code ranges from API to backpacks and gadgets.
42+
43+
## Mars
44+
The tournament/scrimmage plugin. This runs all of the tournament and scrimmage things.

core/pom.xml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>net.avicus</groupId>
8+
<artifactId>atlas</artifactId>
9+
<version>2.0.0</version>
10+
</parent>
11+
<artifactId>atlas-core</artifactId>
12+
<dependencies>
13+
<dependency>
14+
<groupId>net.avicus</groupId>
15+
<artifactId>compendium-bukkit</artifactId>
16+
</dependency>
17+
<dependency>
18+
<groupId>net.avicus</groupId>
19+
<artifactId>magnet-api</artifactId>
20+
</dependency>
21+
<dependency>
22+
<groupId>net.avicus</groupId>
23+
<artifactId>magnet</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.projectlombok</groupId>
27+
<artifactId>lombok</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>net.avicus</groupId>
31+
<artifactId>grave</artifactId>
32+
</dependency>
33+
<dependency>
34+
<groupId>tc.oc</groupId>
35+
<artifactId>tracker</artifactId>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.keenant</groupId>
39+
<artifactId>tabbed</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>com.sk89q.worldedit</groupId>
43+
<artifactId>worldedit-core</artifactId>
44+
</dependency>
45+
<dependency>
46+
<groupId>com.sk89q.worldedit</groupId>
47+
<artifactId>worldedit-bukkit</artifactId>
48+
</dependency>
49+
<dependency>
50+
<groupId>us.myles</groupId>
51+
<artifactId>viaversion</artifactId>
52+
</dependency>
53+
</dependencies>
54+
<build>
55+
<plugins>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-shade-plugin</artifactId>
59+
<version>2.1</version>
60+
<executions>
61+
<execution>
62+
<phase>package</phase>
63+
<goals>
64+
<goal>shade</goal>
65+
</goals>
66+
</execution>
67+
</executions>
68+
<configuration>
69+
<artifactSet>
70+
<includes>
71+
<include>org.jdom:jdom2</include>
72+
<include>joda-time:joda-time</include>
73+
<include>com.keenant:bossy</include>
74+
<include>com.keenant:tabbed</include>
75+
<include>org.simpleframework:simple-xml</include>
76+
<include>com.sk89q:command-framework-bukkit</include>
77+
<include>org.javalite:javalite-common</include>
78+
</includes>
79+
</artifactSet>
80+
</configuration>
81+
</plugin>
82+
</plugins>
83+
</build>
84+
</project>

0 commit comments

Comments
 (0)