commit 864a139dd181d3c89a1df9848254b2cc421b6102 Author: clibing Date: Thu Dec 19 00:02:05 2024 +0800 init code diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6909d3e --- /dev/null +++ b/.gitignore @@ -0,0 +1,87 @@ +# Created by .ignore support plugin (hsz.mobi) +### Maven template +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +# https://github.com/takari/maven-wrapper#usage-without-binary-jar +.mvn/wrapper/maven-wrapper.jar + +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..4b661a5 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..910b3fc --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..5240af5 --- /dev/null +++ b/pom.xml @@ -0,0 +1,25 @@ + + + 4.0.0 + + org.example + test-builder + 1.0-SNAPSHOT + + + + + LiheControlRelease + Nexus Release Repository + https://nexus.lihe-control.com/repository/maven-public/ + + + LiheControlSnapshot + Nexus Snapshot Repository + https://nexus.lihe-control.com/repository/maven-public/ + + + + \ No newline at end of file diff --git a/src/main/java/com/clibing/UserService.java b/src/main/java/com/clibing/UserService.java new file mode 100644 index 0000000..f4b093f --- /dev/null +++ b/src/main/java/com/clibing/UserService.java @@ -0,0 +1,4 @@ +package com.clibing; +public interface UserService { + boolean login(String username, String password); +} diff --git a/src/main/java/com/clibing/impl/UserServiceImpl.java b/src/main/java/com/clibing/impl/UserServiceImpl.java new file mode 100644 index 0000000..89d1a35 --- /dev/null +++ b/src/main/java/com/clibing/impl/UserServiceImpl.java @@ -0,0 +1,8 @@ +import com.clibing.UserService; + +public class UserServiceImpl implements UserService { + @Override + public boolean login(String username, String password) { + return false; + } +} diff --git a/test-builder.iml b/test-builder.iml new file mode 100644 index 0000000..ff5efa5 --- /dev/null +++ b/test-builder.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file