Skip to content

Commit

Permalink
优化beanTest
Browse files Browse the repository at this point in the history
  • Loading branch information
leaderli committed Jul 26, 2024
1 parent c3fbc2b commit ccf7a0e
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 0 deletions.
38 changes: 38 additions & 0 deletions litool-dependency/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
55 changes: 55 additions & 0 deletions litool-dependency/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-parent</artifactId>
<version>2.3.3</version>
</parent>

<artifactId>litool-dependency</artifactId>
<version>release</version>
<packaging>pom</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-config</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-core</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-dom</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-json</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-runner</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-ast</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.leaderli.litool</groupId>
<artifactId>litool-test</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<module>litool-test</module>
<module>litool-action</module>
<module>litool-ast</module>
<module>litool-dependency</module>
</modules>


Expand Down

0 comments on commit ccf7a0e

Please sign in to comment.