1 Star 0 Fork 8

qiuming112/sql2java

forked from 10km/sql2java 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.44 KB
一键复制 编辑 原始数据 按行查看 历史
10km 提交于 2024-11-22 16:47 +08:00 . [maven-release-plugin] prepare release sql2java-3.33.0
<?xml version="1.0"?>
<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>com.gitee.l0km</groupId>
<artifactId>sql2java</artifactId>
<version>3.33.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>sql2java-base</artifactId>
<name>sql2java-base</name>
<description>sql2java common class package</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<automatic.module.name>sql2java.base</automatic.module.name>
<aspectj.version>1.8.9</aspectj.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.gitee.l0km</groupId>
<artifactId>casban-annotutils</artifactId>
<version>${casban.version}</version>
</dependency>
<dependency>
<groupId>com.gitee.l0km</groupId>
<artifactId>beanfilter-core</artifactId>
<version>${beanfilter.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.gitee.l0km</groupId>
<artifactId>simplemq-base</artifactId>
<version>${simplemq.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vividsolutions</groupId>
<artifactId>jts</artifactId>
<version>${jts.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>2.0.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.15.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
<complianceLevel>1.7</complianceLevel>
<verbose>true</verbose>
<showWeaveInfo>true</showWeaveInfo>
<!-- 忽略adviceDidNotMatch警告-->
<Xlint>adviceDidNotMatch=ignore</Xlint>
<aspectLibraries>
<aspectLibrary>
<groupId>com.gitee.l0km</groupId>
<artifactId>aocache</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<!-- 确保编译器使用的aspectj工具版本与依赖项使用的版本相同。避免警告 -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/qiuming112/sql2java.git
git@gitee.com:qiuming112/sql2java.git
qiuming112
sql2java
sql2java
master

搜索帮助