Compare commits
7 Commits
6eff20bb86
...
develop
Author | SHA1 | Date | |
---|---|---|---|
4605a1c5f9 | |||
00d11f837e | |||
1a7a80d74c | |||
6a37c9c90b | |||
4487a2cb16 | |||
c39dd426e9 | |||
7e156ff2ea |
35
.devcontainer/devcontainer.json
Normal file
35
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,35 @@
|
||||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||||
// README at: https://github.com/devcontainers/templates/tree/main/src/java
|
||||
{
|
||||
"name": "Java",
|
||||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
||||
"image": "mcr.microsoft.com/devcontainers/java:1-11-bullseye",
|
||||
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/java:1": {
|
||||
"version": "none",
|
||||
"installMaven": "true",
|
||||
"installGradle": "true"
|
||||
},
|
||||
"ghcr.io/devcontainers/features/powershell:1": {}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"vscjava.vscode-java-pack"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||
// "forwardPorts": [],
|
||||
|
||||
// Use 'postCreateCommand' to run commands after the container is created.
|
||||
// "postCreateCommand": "java -version",
|
||||
|
||||
// Configure tool-specific properties.
|
||||
// "customizations": {},
|
||||
|
||||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
||||
// "remoteUser": "root"
|
||||
}
|
8
.vscode/launch.json
vendored
8
.vscode/launch.json
vendored
@@ -4,6 +4,12 @@
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "java",
|
||||
"request": "attach",
|
||||
"name": "Attach by Process ID",
|
||||
"processId": "${command:PickJavaProcess}"
|
||||
},
|
||||
{
|
||||
"type": "java",
|
||||
"name": "Debug (Launch) - Current File",
|
||||
@@ -19,8 +25,6 @@
|
||||
"sourcePaths": [
|
||||
"src/main/java"
|
||||
],
|
||||
"preLaunchTask": "start test server",
|
||||
"postDebugTask": "stop test server"
|
||||
}
|
||||
]
|
||||
}
|
19
Jenkinsfile
vendored
19
Jenkinsfile
vendored
@@ -1,22 +1,27 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
kubernetes {
|
||||
cloud 'rsys-devel'
|
||||
defaultContainer 'maven'
|
||||
inheritFrom 'maven'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage ("Install") {
|
||||
stage ("validate") {
|
||||
steps {
|
||||
sh 'mamba env update --file environment.yml'
|
||||
sh 'echo "mamba activate islandsurvivalcraft" >> ~/.bashrc'
|
||||
sh "mvn validate"
|
||||
}
|
||||
}
|
||||
stage ("Build") {
|
||||
stage ("compile") {
|
||||
steps {
|
||||
sh "mvn compile"
|
||||
}
|
||||
}
|
||||
stage ("Test") {
|
||||
stage ("test") {
|
||||
steps {
|
||||
sh "mvn -Dmaven.test.skip=false test"
|
||||
junit 'target/surefire-reports/TEST-*.xml'
|
||||
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'target/surefire-reports/TEST-*.xml', stopProcessingIfError: true)]
|
||||
recordCoverage(tools: [[parser: 'JUNIT', pattern: 'target/surefire-reports/TEST-*.xml']])
|
||||
}
|
||||
}
|
||||
stage ("Package") {
|
||||
|
@@ -2,5 +2,5 @@ name: islandsurvivalcraft
|
||||
channels:
|
||||
- conda-forge
|
||||
dependencies:
|
||||
- openjdk=11.0.*
|
||||
- maven=3.8.*
|
||||
- openjdk=21
|
||||
- maven
|
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"java.configuration.updateBuildConfiguration": "automatic",
|
||||
"files.exclude": {
|
||||
"**/.classpath": true,
|
||||
"**/.project": true,
|
||||
"**/.settings": true,
|
||||
"**/.factorypath": true
|
||||
},
|
||||
"cSpell.words": [
|
||||
"Bukkit",
|
||||
"crafter",
|
||||
"itemstack"
|
||||
]
|
||||
}
|
||||
}
|
6
plugin.yml
Normal file
6
plugin.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
name: IslandSurvivalCraft
|
||||
main: ca.recrown.IslandSurvivalCraft
|
||||
version: 1.0.0
|
||||
description: Adds the gamemode IslandSurvivalCraft.
|
||||
commands:
|
||||
depend: [WorldGuard]
|
38
src/test/java/ca/recrown/islandsurvivalcraft/AppTest.java
Normal file
38
src/test/java/ca/recrown/islandsurvivalcraft/AppTest.java
Normal file
@@ -0,0 +1,38 @@
|
||||
package ca.recrown.islandsurvivalcraft;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
/**
|
||||
* Unit test for simple App.
|
||||
*/
|
||||
public class AppTest
|
||||
extends TestCase
|
||||
{
|
||||
/**
|
||||
* Create the test case
|
||||
*
|
||||
* @param testName name of the test case
|
||||
*/
|
||||
public AppTest( String testName )
|
||||
{
|
||||
super( testName );
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the suite of tests being tested
|
||||
*/
|
||||
public static Test suite()
|
||||
{
|
||||
return new TestSuite( AppTest.class );
|
||||
}
|
||||
|
||||
/**
|
||||
* Rigourous Test :-)
|
||||
*/
|
||||
public void testApp()
|
||||
{
|
||||
assertTrue( true );
|
||||
}
|
||||
}
|
@@ -1 +1 @@
|
||||
Start-Process java -ArgumentList "-Xms512M", "-Xmx1G", "-jar", "craftbukkit.jar", "nogui"
|
||||
Start-Process java -ArgumentList "-Xms512M", "-Xmx1G", "-jar", "paper.jar", "nogui"
|
Reference in New Issue
Block a user