Skip to content

Commit

Permalink
chore: initialize project
Browse files Browse the repository at this point in the history
  • Loading branch information
CarmJos committed Jan 4, 2024
1 parent 90d77ed commit 2e2aa65
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

README LANGUAGES [ [**English**](README.md) | [中文](README_CN.md) ]

![CodeSize](https://img.shields.io/github/languages/code-size/ArtformGames/TemplateSinglePlugin)
[![Download](https://img.shields.io/github/downloads/ArtformGames/TemplateSinglePlugin/total)](https://github.com/ArtformGames/TemplateSinglePlugin/releases)
[![Java CI with Maven](https://github.com/ArtformGames/TemplateSinglePlugin/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/ArtformGames//actions/workflows/maven.yml)
![CodeSize](https://img.shields.io/github/languages/code-size/ArtformGames/TempFlight)
[![Download](https://img.shields.io/github/downloads/ArtformGames/TempFlight/total)](https://github.com/ArtformGames/TempFlight/releases)
[![Java CI with Maven](https://github.com/ArtformGames/TempFlight/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/ArtformGames//actions/workflows/maven.yml)
![Support](https://img.shields.io/badge/Minecraft-Java%201.16--Latest-green)

# **TemplateSinglePlugin**
# **TempFlight**

> Slogan
Expand All @@ -24,11 +24,11 @@ Descriptions
- **[Recommend]** Placeholders based on [PlaceholderAPI](https://www.spigotmc.org/resources/6245/) .

For development dependencies, please
see [Dependencies](https://github.com/ArtformGames/TemplateSinglePlugin/network/dependencies) .
see [Dependencies](https://github.com/ArtformGames/TempFlight/network/dependencies) .

## Commands

The main command is `/TemplateSinglePlugin` or `/tsp`.
The main command is `/TempFlight` or `/tsp`.

```text
Expand All @@ -51,7 +51,7 @@ Will be generated on the first boot up.
## Permissions

```text
# TemplateSinglePlugin.admin
# TempFlight.admin
- The permissions for all admin commands and functions.
```

Expand All @@ -68,5 +68,5 @@ The source code of this project adopts the [GNU General Public License v3.0](htt
This project is mainly developed by the [Artfrom Games](https://github.com/ArtformGames/) .

Many thanks to Jetbrains for kindly providing a license for us to work on this and other open-source projects.
[![](https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.svg)](https://www.jetbrains.com/?from=https://github.com/ArtformGames/TemplateSinglePlugin)
[![](https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.svg)](https://www.jetbrains.com/?from=https://github.com/ArtformGames/TempFlight)

14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<deps.core.version>1.0.0</deps.core.version>
</properties>
<groupId>com.artformgames</groupId>
<artifactId>TemplateSinglePlugin</artifactId>
<artifactId>tempflight</artifactId>
<version>1.0.0</version>

<name>TemplateSinglePlugin</name>
<name>TempFlight</name>
<description>

</description>
<url>https://github.com/ArtformGames/TemplateSinglePlugin</url>
<url>https://github.com/ArtformGames/TempFlight</url>

<developers>
<developer>
Expand Down Expand Up @@ -50,20 +50,20 @@

<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/ArtformGames/TemplateSinglePlugin/actions/workflows/maven.yml</url>
<url>https://github.com/ArtformGames/TempFlight/actions/workflows/maven.yml</url>
</ciManagement>

<distributionManagement>
<downloadUrl>https://github.com/ArtformGames/TemplateSinglePlugin/releases</downloadUrl>
<downloadUrl>https://github.com/ArtformGames/TempFlight/releases</downloadUrl>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/ArtformGames/TemplateSinglePlugin</url>
<url>https://maven.pkg.github.com/ArtformGames/TempFlight</url>
</repository>
<snapshotRepository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/ArtformGames/TemplateSinglePlugin</url>
<url>https://maven.pkg.github.com/ArtformGames/TempFlight</url>
</snapshotRepository>
</distributionManagement>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package com.artformgames.plugin.template;
package com.artformgames.plugin.tempflight;

import cc.carm.lib.easyplugin.EasyPlugin;
import cc.carm.lib.mineconfiguration.bukkit.MineConfiguration;
import com.artformgames.core.utils.GHUpdateChecker;
import com.artformgames.plugin.template.conf.PluginConfig;
import com.artformgames.plugin.template.conf.PluginMessages;
import com.artformgames.plugin.tempflight.conf.PluginConfig;
import com.artformgames.plugin.tempflight.conf.PluginMessages;
import org.bstats.bukkit.Metrics;

public class Main extends EasyPlugin {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.artformgames.plugin.template.conf;
package com.artformgames.plugin.tempflight.conf;

import cc.carm.lib.configuration.core.ConfigurationRoot;
import cc.carm.lib.configuration.core.annotation.HeaderComment;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.artformgames.plugin.template.conf;
package com.artformgames.plugin.tempflight.conf;

import cc.carm.lib.configuration.core.ConfigurationRoot;

Expand Down

0 comments on commit 2e2aa65

Please sign in to comment.