Showing
5 changed files
with
76 additions
and
0 deletions
.gitignore
0 → 100644
| 1 | +target/ | ||
| 2 | +!.mvn/wrapper/maven-wrapper.jar | ||
| 3 | +!**/src/main/**/target/ | ||
| 4 | +!**/src/test/**/target/ | ||
| 5 | + | ||
| 6 | +### IntelliJ IDEA ### | ||
| 7 | +.idea/modules.xml | ||
| 8 | +.idea/jarRepositories.xml | ||
| 9 | +.idea/compiler.xml | ||
| 10 | +.idea/libraries/ | ||
| 11 | +*.iws | ||
| 12 | +*.iml | ||
| 13 | +*.ipr | ||
| 14 | + | ||
| 15 | +### Eclipse ### | ||
| 16 | +.apt_generated | ||
| 17 | +.classpath | ||
| 18 | +.factorypath | ||
| 19 | +.project | ||
| 20 | +.settings | ||
| 21 | +.springBeans | ||
| 22 | +.sts4-cache | ||
| 23 | + | ||
| 24 | +### NetBeans ### | ||
| 25 | +/nbproject/private/ | ||
| 26 | +/nbbuild/ | ||
| 27 | +/dist/ | ||
| 28 | +/nbdist/ | ||
| 29 | +/.nb-gradle/ | ||
| 30 | +build/ | ||
| 31 | +!**/src/main/**/build/ | ||
| 32 | +!**/src/test/**/build/ | ||
| 33 | + | ||
| 34 | +### VS Code ### | ||
| 35 | +.vscode/ | ||
| 36 | + | ||
| 37 | +### Mac OS ### | ||
| 38 | +.DS_Store |
.idea/.gitignore
0 → 100644
.idea/vcs.xml
0 → 100644
pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <groupId>com.wondertek</groupId> | ||
| 8 | + <artifactId>crp-operation</artifactId> | ||
| 9 | + <version>1.0-SNAPSHOT</version> | ||
| 10 | + | ||
| 11 | + <properties> | ||
| 12 | + <maven.compiler.source>17</maven.compiler.source> | ||
| 13 | + <maven.compiler.target>17</maven.compiler.target> | ||
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| 15 | + </properties> | ||
| 16 | + | ||
| 17 | +</project> |
-
Please register or login to post a comment