diff --git a/.gitignore b/.gitignore index a2ee10a..c4ff0f4 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,13 @@ nbdist/ polaris/ *.pdf + +### Gradle ### +HELP.md +.gradle +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### Kotlin ### +.kotlin diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts new file mode 100644 index 0000000..0187847 --- /dev/null +++ b/buildSrc/build.gradle.kts @@ -0,0 +1,13 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + // Support convention plugins written in Kotlin. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build. + `kotlin-dsl` +} + +repositories { + // Use the plugin portal to apply community plugins in convention plugins. + gradlePluginPortal() +} diff --git a/buildSrc/src/main/kotlin/buildlogic.java-conventions.gradle.kts b/buildSrc/src/main/kotlin/buildlogic.java-conventions.gradle.kts new file mode 100644 index 0000000..46fcd78 --- /dev/null +++ b/buildSrc/src/main/kotlin/buildlogic.java-conventions.gradle.kts @@ -0,0 +1,41 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + `java-library` + `maven-publish` +} + +repositories { + mavenLocal() + maven { + url = uri("https://repo.maven.apache.org/maven2/") + } +} + +dependencies { + compileOnly("com.google.code.findbugs:jsr305:3.0.2") +} + +group = "com.jiangtj.micro" +version = "0.0.32" +java.sourceCompatibility = JavaVersion.VERSION_1_8 + +java { + withSourcesJar() +} + +publishing { + publications.create("maven") { + from(components["java"]) + } +} + +tasks.withType() { + options.encoding = "UTF-8" +} + +tasks.withType() { + options.encoding = "UTF-8" +} diff --git a/demo-backend/build.gradle.kts b/demo-backend/build.gradle.kts new file mode 100644 index 0000000..fad44e7 --- /dev/null +++ b/demo-backend/build.gradle.kts @@ -0,0 +1,26 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(libs.org.springframework.boot.spring.boot.starter.web) + api(project(":micro-spring-boot-starter")) + api(project(":micro-auth-casdoor")) + api(project(":micro-pic-upload-starter")) + api(libs.org.springframework.boot.spring.boot.starter.actuator) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + api(libs.org.projectlombok.lombok) + testImplementation(project(":micro-test")) + testImplementation(libs.org.springframework.spring.webflux) + testImplementation(libs.io.projectreactor.reactor.test) +} + +description = "demo-backend" + +java { + withJavadocJar() +} diff --git a/demo-reactive/build.gradle.kts b/demo-reactive/build.gradle.kts new file mode 100644 index 0000000..98f3a71 --- /dev/null +++ b/demo-reactive/build.gradle.kts @@ -0,0 +1,24 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(project(":micro-auth-casdoor")) + api(project(":micro-spring-boot-starter")) + api(libs.org.springframework.boot.spring.boot.starter.webflux) + api(libs.org.springframework.boot.spring.boot.starter.actuator) + api(libs.org.projectlombok.lombok) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + testImplementation(project(":micro-test")) + testImplementation(libs.io.projectreactor.reactor.test) +} + +description = "demo-reactive" + +java { + withJavadocJar() +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..377538c --- /dev/null +++ b/gradle.properties @@ -0,0 +1,5 @@ +# This file was generated by the Gradle 'init' task. +# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties + +org.gradle.configuration-cache=true + diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000..0de083d --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,82 @@ +# This file was generated by the Gradle 'init' task. +# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format + +[versions] +ch-qos-logback-logback-classic = "1.5.18" +com-aliyun-oss-aliyun-sdk-oss = "3.18.2" +com-fasterxml-jackson-core-jackson-databind = "2.18.3" +com-fasterxml-jackson-datatype-jackson-datatype-jsr310 = "2.18.3" +com-github-ben-manes-caffeine-caffeine = "3.1.8" +com-github-binarywang-weixin-java-miniapp = "4.7.0" +com-huaweicloud-esdk-obs-java-bundle = "3.25.4" +io-jsonwebtoken-jjwt-api = "0.12.6" +io-jsonwebtoken-jjwt-impl = "0.12.6" +io-jsonwebtoken-jjwt-jackson = "0.12.6" +io-minio-minio = "8.5.17" +io-projectreactor-reactor-core = "3.7.5" +io-projectreactor-reactor-test = "3.7.5" +jakarta-validation-jakarta-validation-api = "3.0.2" +org-apache-logging-log4j-log4j-to-slf4j = "2.24.3" +org-apache-tomcat-embed-tomcat-embed-core = "10.1.40" +org-casbin-casdoor-spring-boot-starter = "1.15.0" +org-hibernate-validator-hibernate-validator = "8.0.2.Final" +org-jooq-jooq-codegen = "3.19.22" +org-jooq-jooq-meta = "3.19.22" +org-junit-jupiter-junit-jupiter = "5.11.4" +org-projectlombok-lombok = "1.18.38" +org-slf4j-jul-to-slf4j = "2.0.17" +org-springframework-boot-spring-boot-configuration-processor = "3.4.5" +org-springframework-boot-spring-boot-starter = "3.4.5" +org-springframework-boot-spring-boot-starter-actuator = "3.4.5" +org-springframework-boot-spring-boot-starter-aop = "3.4.5" +org-springframework-boot-spring-boot-starter-cache = "3.4.5" +org-springframework-boot-spring-boot-starter-jooq = "3.4.5" +org-springframework-boot-spring-boot-starter-test = "3.4.5" +org-springframework-boot-spring-boot-starter-web = "3.4.5" +org-springframework-boot-spring-boot-starter-webflux = "3.4.5" +org-springframework-data-spring-data-commons = "3.4.5" +org-springframework-spring-context = "6.2.6" +org-springframework-spring-core = "6.2.6" +org-springframework-spring-web = "6.2.6" +org-springframework-spring-webflux = "6.2.6" +org-springframework-spring-webmvc = "6.2.6" + +[libraries] +ch-qos-logback-logback-classic = { module = "ch.qos.logback:logback-classic", version.ref = "ch-qos-logback-logback-classic" } +com-aliyun-oss-aliyun-sdk-oss = { module = "com.aliyun.oss:aliyun-sdk-oss", version.ref = "com-aliyun-oss-aliyun-sdk-oss" } +com-fasterxml-jackson-core-jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "com-fasterxml-jackson-core-jackson-databind" } +com-fasterxml-jackson-datatype-jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version.ref = "com-fasterxml-jackson-datatype-jackson-datatype-jsr310" } +com-github-ben-manes-caffeine-caffeine = { module = "com.github.ben-manes.caffeine:caffeine", version.ref = "com-github-ben-manes-caffeine-caffeine" } +com-github-binarywang-weixin-java-miniapp = { module = "com.github.binarywang:weixin-java-miniapp", version.ref = "com-github-binarywang-weixin-java-miniapp" } +com-huaweicloud-esdk-obs-java-bundle = { module = "com.huaweicloud:esdk-obs-java-bundle", version.ref = "com-huaweicloud-esdk-obs-java-bundle" } +io-jsonwebtoken-jjwt-api = { module = "io.jsonwebtoken:jjwt-api", version.ref = "io-jsonwebtoken-jjwt-api" } +io-jsonwebtoken-jjwt-impl = { module = "io.jsonwebtoken:jjwt-impl", version.ref = "io-jsonwebtoken-jjwt-impl" } +io-jsonwebtoken-jjwt-jackson = { module = "io.jsonwebtoken:jjwt-jackson", version.ref = "io-jsonwebtoken-jjwt-jackson" } +io-minio-minio = { module = "io.minio:minio", version.ref = "io-minio-minio" } +io-projectreactor-reactor-core = { module = "io.projectreactor:reactor-core", version.ref = "io-projectreactor-reactor-core" } +io-projectreactor-reactor-test = { module = "io.projectreactor:reactor-test", version.ref = "io-projectreactor-reactor-test" } +jakarta-validation-jakarta-validation-api = { module = "jakarta.validation:jakarta.validation-api", version.ref = "jakarta-validation-jakarta-validation-api" } +org-apache-logging-log4j-log4j-to-slf4j = { module = "org.apache.logging.log4j:log4j-to-slf4j", version.ref = "org-apache-logging-log4j-log4j-to-slf4j" } +org-apache-tomcat-embed-tomcat-embed-core = { module = "org.apache.tomcat.embed:tomcat-embed-core", version.ref = "org-apache-tomcat-embed-tomcat-embed-core" } +org-casbin-casdoor-spring-boot-starter = { module = "org.casbin:casdoor-spring-boot-starter", version.ref = "org-casbin-casdoor-spring-boot-starter" } +org-hibernate-validator-hibernate-validator = { module = "org.hibernate.validator:hibernate-validator", version.ref = "org-hibernate-validator-hibernate-validator" } +org-jooq-jooq-codegen = { module = "org.jooq:jooq-codegen", version.ref = "org-jooq-jooq-codegen" } +org-jooq-jooq-meta = { module = "org.jooq:jooq-meta", version.ref = "org-jooq-jooq-meta" } +org-junit-jupiter-junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "org-junit-jupiter-junit-jupiter" } +org-projectlombok-lombok = { module = "org.projectlombok:lombok", version.ref = "org-projectlombok-lombok" } +org-slf4j-jul-to-slf4j = { module = "org.slf4j:jul-to-slf4j", version.ref = "org-slf4j-jul-to-slf4j" } +org-springframework-boot-spring-boot-configuration-processor = { module = "org.springframework.boot:spring-boot-configuration-processor", version.ref = "org-springframework-boot-spring-boot-configuration-processor" } +org-springframework-boot-spring-boot-starter = { module = "org.springframework.boot:spring-boot-starter", version.ref = "org-springframework-boot-spring-boot-starter" } +org-springframework-boot-spring-boot-starter-actuator = { module = "org.springframework.boot:spring-boot-starter-actuator", version.ref = "org-springframework-boot-spring-boot-starter-actuator" } +org-springframework-boot-spring-boot-starter-aop = { module = "org.springframework.boot:spring-boot-starter-aop", version.ref = "org-springframework-boot-spring-boot-starter-aop" } +org-springframework-boot-spring-boot-starter-cache = { module = "org.springframework.boot:spring-boot-starter-cache", version.ref = "org-springframework-boot-spring-boot-starter-cache" } +org-springframework-boot-spring-boot-starter-jooq = { module = "org.springframework.boot:spring-boot-starter-jooq", version.ref = "org-springframework-boot-spring-boot-starter-jooq" } +org-springframework-boot-spring-boot-starter-test = { module = "org.springframework.boot:spring-boot-starter-test", version.ref = "org-springframework-boot-spring-boot-starter-test" } +org-springframework-boot-spring-boot-starter-web = { module = "org.springframework.boot:spring-boot-starter-web", version.ref = "org-springframework-boot-spring-boot-starter-web" } +org-springframework-boot-spring-boot-starter-webflux = { module = "org.springframework.boot:spring-boot-starter-webflux", version.ref = "org-springframework-boot-spring-boot-starter-webflux" } +org-springframework-data-spring-data-commons = { module = "org.springframework.data:spring-data-commons", version.ref = "org-springframework-data-spring-data-commons" } +org-springframework-spring-context = { module = "org.springframework:spring-context", version.ref = "org-springframework-spring-context" } +org-springframework-spring-core = { module = "org.springframework:spring-core", version.ref = "org-springframework-spring-core" } +org-springframework-spring-web = { module = "org.springframework:spring-web", version.ref = "org-springframework-spring-web" } +org-springframework-spring-webflux = { module = "org.springframework:spring-webflux", version.ref = "org-springframework-spring-webflux" } +org-springframework-spring-webmvc = { module = "org.springframework:spring-webmvc", version.ref = "org-springframework-spring-webmvc" } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..1b33c55 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..ca025c8 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..23d15a9 --- /dev/null +++ b/gradlew @@ -0,0 +1,251 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH="\\\"\\\"" + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..db3a6ac --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH= + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/micro-auth-casdoor/build.gradle.kts b/micro-auth-casdoor/build.gradle.kts new file mode 100644 index 0000000..68afd85 --- /dev/null +++ b/micro-auth-casdoor/build.gradle.kts @@ -0,0 +1,21 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(libs.org.casbin.casdoor.spring.boot.starter) + api(project(":micro-auth")) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + api(libs.org.projectlombok.lombok) + testImplementation(libs.org.springframework.boot.spring.boot.starter.test) +} + +description = "micro-auth" + +java { + withJavadocJar() +} diff --git a/micro-auth-wechat/build.gradle.kts b/micro-auth-wechat/build.gradle.kts new file mode 100644 index 0000000..40ae9f0 --- /dev/null +++ b/micro-auth-wechat/build.gradle.kts @@ -0,0 +1,24 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(libs.com.github.binarywang.weixin.java.miniapp) + api(libs.io.jsonwebtoken.jjwt.api) + api(project(":micro-auth")) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + api(libs.org.projectlombok.lombok) + runtimeOnly(libs.io.jsonwebtoken.jjwt.impl) + runtimeOnly(libs.io.jsonwebtoken.jjwt.jackson) + testImplementation(project(":micro-test")) +} + +description = "micro-auth" + +java { + withJavadocJar() +} diff --git a/micro-auth/build.gradle.kts b/micro-auth/build.gradle.kts new file mode 100644 index 0000000..26c0b0a --- /dev/null +++ b/micro-auth/build.gradle.kts @@ -0,0 +1,23 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(project(":micro-web")) + api(libs.org.springframework.boot.spring.boot.starter.web) + api(libs.org.springframework.boot.spring.boot.starter.webflux) + api(libs.org.springframework.boot.spring.boot.starter) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + api(libs.org.projectlombok.lombok) + testImplementation(libs.org.springframework.boot.spring.boot.starter.test) +} + +description = "micro-auth" + +java { + withJavadocJar() +} diff --git a/micro-common/build.gradle.kts b/micro-common/build.gradle.kts new file mode 100644 index 0000000..c027270 --- /dev/null +++ b/micro-common/build.gradle.kts @@ -0,0 +1,26 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(libs.com.fasterxml.jackson.core.jackson.databind) + api(libs.com.fasterxml.jackson.datatype.jackson.datatype.jsr310) + api(libs.ch.qos.logback.logback.classic) + api(libs.org.apache.logging.log4j.log4j.to.slf4j) + api(libs.org.slf4j.jul.to.slf4j) + api(libs.jakarta.validation.jakarta.validation.api) + api(libs.org.springframework.spring.core) + api(libs.org.projectlombok.lombok) + testImplementation(libs.org.junit.jupiter.junit.jupiter) + testImplementation(libs.org.hibernate.validator.hibernate.validator) +} + +description = "micro-common" + +java { + withJavadocJar() +} diff --git a/micro-pic-upload-starter/build.gradle.kts b/micro-pic-upload-starter/build.gradle.kts new file mode 100644 index 0000000..b172687 --- /dev/null +++ b/micro-pic-upload-starter/build.gradle.kts @@ -0,0 +1,29 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(libs.com.aliyun.oss.aliyun.sdk.oss) + api(libs.com.huaweicloud.esdk.obs.java.bundle) + api(libs.io.minio.minio) + api(project(":micro-common")) + api(project(":micro-web")) + api(libs.org.springframework.boot.spring.boot.starter) + api(libs.org.springframework.spring.web) + api(libs.org.springframework.spring.context) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + api(libs.org.projectlombok.lombok) + api(libs.org.springframework.spring.webmvc) + api(libs.org.springframework.spring.webflux) + testImplementation(libs.org.springframework.boot.spring.boot.starter.test) +} + +description = "micro-pic-upload-starter" + +java { + withJavadocJar() +} diff --git a/micro-spring-boot-starter/build.gradle.kts b/micro-spring-boot-starter/build.gradle.kts new file mode 100644 index 0000000..be09f38 --- /dev/null +++ b/micro-spring-boot-starter/build.gradle.kts @@ -0,0 +1,31 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(project(":micro-web")) + api(libs.org.springframework.boot.spring.boot.starter) + api(libs.org.springframework.spring.web) + api(libs.org.springframework.spring.context) + api(libs.org.hibernate.validator.hibernate.validator) + api(libs.com.fasterxml.jackson.core.jackson.databind) + api(libs.com.fasterxml.jackson.datatype.jackson.datatype.jsr310) + api(libs.org.springframework.boot.spring.boot.starter.cache) + api(libs.com.github.ben.manes.caffeine.caffeine) + api(libs.org.apache.tomcat.embed.tomcat.embed.core) + api(libs.org.springframework.spring.webflux) + api(libs.org.springframework.spring.webmvc) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + api(libs.org.projectlombok.lombok) + testImplementation(libs.org.springframework.boot.spring.boot.starter.test) +} + +description = "micro-spring-boot-starter" + +java { + withJavadocJar() +} diff --git a/micro-sql-jooq/build.gradle.kts b/micro-sql-jooq/build.gradle.kts new file mode 100644 index 0000000..4b8cd0c --- /dev/null +++ b/micro-sql-jooq/build.gradle.kts @@ -0,0 +1,25 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(project(":micro-common")) + api(libs.org.springframework.boot.spring.boot.starter.jooq) + api(libs.org.springframework.data.spring.data.commons) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + api(libs.org.projectlombok.lombok) + api(libs.org.jooq.jooq.meta) + api(libs.org.jooq.jooq.codegen) + api(libs.io.projectreactor.reactor.core) + testImplementation(libs.org.springframework.boot.spring.boot.starter.test) +} + +description = "micro-sql-jooq" + +java { + withJavadocJar() +} diff --git a/micro-test/build.gradle.kts b/micro-test/build.gradle.kts new file mode 100644 index 0000000..ba7f99d --- /dev/null +++ b/micro-test/build.gradle.kts @@ -0,0 +1,21 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(project(":micro-common")) + api(project(":micro-auth")) + api(libs.org.springframework.boot.spring.boot.starter.test) + api(libs.org.projectlombok.lombok) + api(libs.io.projectreactor.reactor.test) +} + +description = "micro-test" + +java { + withJavadocJar() +} diff --git a/micro-web/build.gradle.kts b/micro-web/build.gradle.kts new file mode 100644 index 0000000..c87c8a6 --- /dev/null +++ b/micro-web/build.gradle.kts @@ -0,0 +1,26 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +plugins { + id("buildlogic.java-conventions") +} + +dependencies { + api(project(":micro-common")) + api(libs.org.springframework.boot.spring.boot.starter) + api(libs.org.springframework.spring.web) + api(libs.org.springframework.boot.spring.boot.starter.aop) + api(libs.org.springframework.spring.webmvc) + api(libs.org.apache.tomcat.embed.tomcat.embed.core) + api(libs.io.projectreactor.reactor.core) + api(libs.org.projectlombok.lombok) + api(libs.org.springframework.boot.spring.boot.configuration.processor) + testImplementation(libs.org.springframework.boot.spring.boot.starter.test) +} + +description = "micro-web" + +java { + withJavadocJar() +} diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..27604cb --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,17 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +rootProject.name = "parent" +include(":demo-reactive") +include(":micro-auth-wechat") +include(":demo-backend") +include(":micro-dependencies") +include(":micro-common") +include(":micro-auth-casdoor") +include(":micro-web") +include(":micro-test") +include(":micro-pic-upload-starter") +include(":micro-auth") +include(":micro-spring-boot-starter") +include(":micro-sql-jooq")