From 234a2fabdb2d85f85e63f384d544901af409acf7 Mon Sep 17 00:00:00 2001 From: divenswu Date: Tue, 20 Dec 2022 11:22:28 +0800 Subject: [PATCH] init --- .gitignore | 43 +++++++++++++ open-anpr-core/pom.xml | 15 +++++ open-anpr-server/pom.xml | 15 +++++ pom.xml | 134 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 207 insertions(+) create mode 100644 .gitignore create mode 100644 open-anpr-core/pom.xml create mode 100644 open-anpr-server/pom.xml create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd446f4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +###################################################################### +# Build Tools + +.gradle +/build/ +!gradle/wrapper/gradle-wrapper.jar + +target/ +!.mvn/wrapper/maven-wrapper.jar + +###################################################################### +# IDE + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +nbproject/private/ +build/* +nbbuild/ +dist/ +nbdist/ +.nb-gradle/ + +###################################################################### +# Others +*.log +*.xml.versionsBackup + +!*/build/*.java +!*/build/*.html +!*/build/*.xml \ No newline at end of file diff --git a/open-anpr-core/pom.xml b/open-anpr-core/pom.xml new file mode 100644 index 0000000..8a6c1bb --- /dev/null +++ b/open-anpr-core/pom.xml @@ -0,0 +1,15 @@ + + + + open-anpr + com.visual.open.anpr + 1.0.0 + + 4.0.0 + + open-anpr-core + + + \ No newline at end of file diff --git a/open-anpr-server/pom.xml b/open-anpr-server/pom.xml new file mode 100644 index 0000000..cb3f2e8 --- /dev/null +++ b/open-anpr-server/pom.xml @@ -0,0 +1,15 @@ + + + + open-anpr + com.visual.open.anpr + 1.0.0 + + 4.0.0 + + open-anpr-server + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..1725fc5 --- /dev/null +++ b/pom.xml @@ -0,0 +1,134 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 2.7.5 + + + + com.visual.open.anpr + open-anpr + pom + 1.0.0 + + + open-anpr-core + open-anpr-server + + + + 4.5.1-2 + 1.13.1 + 1.2.58 + 6.0.13.Final + 3.6.1 + 4.1 + 3.0.0 + 3.0.3 + 8 + 2.6 + + + + + + com.visual.open.anpr + open-anpr-core + ${project.version} + + + + org.openpnp + opencv + ${opencv.version} + + + + com.microsoft.onnxruntime + onnxruntime + ${onnxruntime.version} + + + + com.alibaba + fastjson + ${fastjson.version} + + + + org.apache.commons + commons-collections4 + ${commons-collections4.version} + + + + org.apache.commons + commons-math3 + ${commons-math3.version} + + + + org.hibernate.validator + hibernate-validator + ${hibernate.version} + + + + io.springfox + springfox-boot-starter + ${swagger.version} + + + com.github.xiaoymin + knife4j-spring-boot-starter + ${knife4j-ui.version} + + + + + + + public + aliyun nexus + https://maven.aliyun.com/repository/public + + true + + + + central + aliyun nexus + https://maven.aliyun.com/repository/central + + true + + + + + + + public + aliyun nexus + https://maven.aliyun.com/repository/spring-plugin + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 8 + 8 + + + + + + \ No newline at end of file