ajj
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ailbb</groupId> <artifactId>ajj</artifactId> <version>1.18</version> </dependency>
<?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> <groupId>com.ailbb</groupId> <artifactId>ajj</artifactId> <version>1.18</version> <!-- <version>1.12-SNAPSHOT</version>--> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <url>https://github.com/ailbb/${project.artifactId}</url> <description>Ailbb jquery for java</description> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>zhangwei</name> <email>sir.zhangwei@hotmail.com</email> <organization>ailbb</organization> <organizationUrl>http://www.ailbb.com</organizationUrl> </developer> </developers> <scm> <connection> scm:git:https://github.com/ailbb/${project.artifactId}.git </connection> <developerConnection> scm:git:https://github.com/ailbb/${project.artifactId}.git </developerConnection> <url>https://github.com/ailbb/${project.artifactId}</url> <tag>vv${project.version}</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <encoding>UTF-8</encoding> <java.version>1.17</java.version> <!-- Don't specify the version--> <version.spring>6.0.3</version.spring> <version.jsonlib>2.4</version.jsonlib> <version.servlet>4.0.1</version.servlet> <version.jakarta.servlet>6.0.0</version.jakarta.servlet> <version.velocity>2.3</version.velocity> <version.velocity.tools>3.1</version.velocity.tools> <version.velocity.tools-view>3.0</version.velocity.tools-view> <version.mail>2.1.2</version.mail> <version.jdbc.mysql>8.1.0</version.jdbc.mysql> <version.fileupload>2.0.0-M1</version.fileupload> <version.poi>5.2.3</version.poi> <version.snakeyaml.yaml>2.1</version.snakeyaml.yaml> <version.selenium.firefox>4.11.0</version.selenium.firefox> <version.jdom2>2.0.6.1</version.jdom2> <version.commons.compress>1.23.0</version.commons.compress> <version.commons-io>2.13.0</version.commons-io> <version.commons-lang3>3.13.0</version.commons-lang3> <version.jasypt>3.0.5</version.jasypt> <version.mybatis>3.5.13</version.mybatis> <version.junit>5.10.0</version.junit> <version.httpclient>5.2.1</version.httpclient> <version.bcprov-jdk15on>1.70</version.bcprov-jdk15on> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib --> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>${version.jsonlib}</version> <classifier>jdk15</classifier> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <version>${version.velocity}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity-tools --> <!-- <dependency>--> <!-- <groupId>org.apache.velocity</groupId>--> <!-- <artifactId>velocity-tools</artifactId>--> <!-- <version>${version.velocity.tools}</version>--> <!-- </dependency>--> <dependency> <groupId>org.apache.velocity.tools</groupId> <artifactId>velocity-tools-generic</artifactId> <version>${version.velocity.tools}</version> </dependency> <dependency> <groupId>org.apache.velocity.tools</groupId> <artifactId>velocity-tools-view</artifactId> <version>${version.velocity.tools}</version> </dependency> <dependency> <groupId>org.apache.velocity.tools</groupId> <artifactId>velocity-tools-view-jsp</artifactId> <version>${version.velocity.tools-view}</version> </dependency> <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api --> <!-- <dependency>--> <!-- <groupId>javax.servlet</groupId>--> <!-- <artifactId>javax.servlet-api</artifactId>--> <!-- <version>${version.servlet}</version>--> <!-- <scope>provided</scope>--> <!-- </dependency>--> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>${version.jakarta.servlet}</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api --> <!-- <dependency>--> <!-- <groupId>javax.mail</groupId>--> <!-- <artifactId>javax.mail-api</artifactId>--> <!-- <version>${version.mail}</version>--> <!-- </dependency>--> <!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api --> <dependency> <groupId>jakarta.mail</groupId> <artifactId>jakarta.mail-api</artifactId> <version>${version.mail}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${version.poi}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${version.poi}</version> </dependency> <!-- MySQL 连接驱动依赖 --> <!-- <dependency>--> <!-- <groupId>mysql</groupId>--> <!-- <artifactId>mysql-connector-java</artifactId>--> <!-- <version>${version.jdbc.mysql}</version>--> <!-- </dependency>--> <!-- MySQL 连接驱动依赖 --> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <version>${version.jdbc.mysql}</version> </dependency> <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${version.commons-io}</version> </dependency> <!-- 文件上传所依赖的jar包 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-fileupload2-core</artifactId> <version>${version.fileupload}</version> </dependency> <!-- 文件上传所依赖的jar包 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-fileupload2-jakarta</artifactId> <version>${version.fileupload}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-web --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${version.spring}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${version.spring}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> <version>${version.spring}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-firefox-driver --> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-firefox-driver</artifactId> <version>${version.selenium.firefox}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml --> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${version.snakeyaml.yaml}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.jdom/jdom2 --> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>${version.jdom2}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> <!-- <dependency>--> <!-- <groupId>org.apache.httpcomponents</groupId>--> <!-- <artifactId>httpclient</artifactId>--> <!-- <version>${version.httpclient}</version>--> <!-- </dependency>--> <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> <version>${version.httpclient}</version> </dependency> <!-- 由于Oracle授权问题,Maven3不提供oracle JDBC driver--> <!-- <dependency>--> <!-- <groupId>com.oracle</groupId>--> <!-- <artifactId>ojdbc6</artifactId>--> <!-- <version>11.2.0.1.0</version>--> <!-- </dependency>--> <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>${version.bcprov-jdk15on}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>${version.commons.compress}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${version.commons-lang3}</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>${version.mybatis}</version> </dependency> <!-- <dependency>--> <!-- <groupId>junit</groupId>--> <!-- <artifactId>junit</artifactId>--> <!-- <version>4.13.2</version>--> <!-- <scope>test</scope>--> <!-- </dependency>--> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>${version.jasypt}</version> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>5.0.2</version> </dependency> <!-- <dependency>--> <!-- <groupId>org.jetbrains</groupId>--> <!-- <artifactId>decompiler</artifactId>--> <!-- <version>1.0</version>--> <!-- <scope>system</scope>--> <!-- <systemPath>${project.basedir}/src/main/resources/jar/java-decompiler.jar</systemPath>--> <!-- </dependency>--> </dependencies> </project>