zhongdaoyi@wondertek.com.cn

init

  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
  1 +# Default ignored files
  2 +/shelf/
  3 +/workspace.xml
  4 +# Editor-based HTTP Client requests
  5 +/httpRequests/
  6 +# Datasource local storage ignored files
  7 +/dataSources/
  8 +/dataSources.local.xml
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project version="4">
  3 + <component name="VcsDirectoryMappings">
  4 + <mapping directory="$PROJECT_DIR$" vcs="Git" />
  5 + </component>
  6 +</project>
  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>
  1 +package com.wondertek;
  2 +
  3 +public class Main {
  4 + public static void main(String[] args) {
  5 + System.out.println("Hello, World!");
  6 + }
  7 +}