init
This commit is contained in:
parent
364f91c84f
commit
8a9dced260
32
.gitignore
vendored
Normal file
32
.gitignore
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
### STS ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
*/target/
|
||||||
|
.idea/
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
|
||||||
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
build/
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
||||||
|
rebel.xml
|
||||||
|
.flattened-pom.xml
|
||||||
|
**/target
|
||||||
58
pom.xml
Normal file
58
pom.xml
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>cn.axzo.infra</groupId>
|
||||||
|
<artifactId>axzo-parent</artifactId>
|
||||||
|
<version>2.4.13.4</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>cn.axzo.pokonyan</groupId>
|
||||||
|
<artifactId>pokonyan</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
<name>pokonyan</name>
|
||||||
|
<description>pokonyan project for Spring Boot</description>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<revision>2.0.0-SNAPSHOT</revision>
|
||||||
|
<axzo-bom.version>2.0.0-SNAPSHOT</axzo-bom.version>
|
||||||
|
<axzo-dependencies.version>2.0.0-SNAPSHOT</axzo-dependencies.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>cn.axzo.infra</groupId>
|
||||||
|
<artifactId>axzo-bom</artifactId>
|
||||||
|
<version>${axzo-bom.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>cn.axzo.infra</groupId>
|
||||||
|
<artifactId>axzo-dependencies</artifactId>
|
||||||
|
<version>${axzo-dependencies.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>axzo</id>
|
||||||
|
<name>axzo repository</name>
|
||||||
|
<url>https://nexus.axzo.cn/repository/axzo/</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
</project>
|
||||||
Loading…
Reference in New Issue
Block a user