imp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jirefox.memcalc</groupId> <artifactId>imp</artifactId> <version>0.0.1</version> </dependency>
<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.jirefox.memcalc</groupId> <artifactId>imp</artifactId> <version>0.0.1</version> <url>https://www.jirefox.com/memcalc/memcalc.html</url> <description>memcalc imp components</description> <licenses> <license> <name>Jirefox Commercial License, Version 1.0</name> <comments>you can get and use this components freely in your trial env, but you should get a license when you use it in your prod env</comments> </license> </licenses> <developers> <developer> <organization>Jirefox</organization> <organizationUrl>http://www.jirefox.com</organizationUrl> </developer> </developers> <scm> <url /> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.3</version> </dependency> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-dbutils</groupId> <artifactId>commons-dbutils</artifactId> <version>1.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifestEntries> <Built-By>Jirefox</Built-By> <Build-Jdk>1.8</Build-Jdk> </manifestEntries> </archive> </configuration> </plugin> <!-- source源码插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <configuration> <archive> <manifestEntries> <Built-By>Jirefox</Built-By> <Build-Jdk>1.8</Build-Jdk> </manifestEntries> </archive> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> <configuration> <includes> <include>**/*.txt</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </configuration> </execution> </executions> </plugin> <!-- javadoc插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <archive> <manifestEntries> <Built-By>Jirefox</Built-By> <Build-Jdk>1.8</Build-Jdk> </manifestEntries> </archive> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- central发布插件 --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>jirefox</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <configuration> <executable>C:\Program Files (x86)\GnuPG\bin\gpg.exe</executable> <keyname>com.jirefox</keyname> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>