commit 44de3bcf695cf76ded32bc0cf182be09b6240d9e Author: Zihlu Wang Date: Fri Jul 28 19:01:44 2023 +0800 build: create repository diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc3f89c --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2192302 --- /dev/null +++ b/pom.xml @@ -0,0 +1,227 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + cn.org.codecrafters + jdevkit + 1.0.0 + + pom + + + 17 + 17 + UTF-8 + + + 3.3.0 + 3.5.0 + 3.1.0 + 3.3.0 + + + 1.4.8 + 5.10.0 + 2.0.7 + 1.18.28 + + + + + zihluwong + Zihlu Wang + zihlu.wang@codecrafters.org.cn + CodeCraftersCN + https://codecrafters.org.cn + + + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/ + repo + + + + + https://github.com/CodeCraftersCN/jdevkit + git@github.com:CodeCraftersCN/jdevkit.git + https://github.com/CodeCraftersCN/jdevkit + + + + + + org.junit + junit-bom + ${junit.version} + pom + import + + + + org.slf4j + slf4j-api + ${slf4j-api.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + + org.projectlombok + lombok + ${lombok.version} + + + + + + + org.junit.jupiter + junit-jupiter + test + + + + org.slf4j + slf4j-api + + + ch.qos.logback + logback-classic + + + + org.projectlombok + lombok + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + ${source-plugin.version} + + + attach-sources + + jar + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${gpg-plugin.version} + + + verify + + sign + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${jar-plugin.version} + + + *.xml + + + + + + + + snapshot + https://oss.sonatype.org/content/repositories/snapshots/ + + + release + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + snapshot + + + + org.apache.maven.plugins + maven-source-plugin + ${source-plugin.version} + + + attach-sources + + jar + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${jar-plugin.version} + + + *.xml + + + + + + + + + \ No newline at end of file