组织ID: |
com.github.saphyra |
项目ID: |
encryption |
版本: |
1.0.0 |
最后修改时间: |
2019-12-02 22:33:42 |
包类型: |
jar |
标题: |
${projectName} |
描述: |
${projectDescription} |
相关URL: |
https://github.com/saphyra/${artifactId} |
大小: |
11.54KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.saphyra</groupId>
<artifactId>encryption</artifactId>
<version>1.0.0</version>
</dependency>
|
Gradle引入代码: |
com.github.saphyra:encryption:1.0.0
|
下载Jar包: |
|
POM文件内容: |
<?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>
<properties>
<artifactId>encryption</artifactId>
<projectName>Encryption Library</projectName>
<projectDescription>Library contains services for encrypting and decrypting</projectDescription>
</properties>
<groupId>com.github.saphyra</groupId>
<artifactId>${artifactId}</artifactId>
<version>1.0.0</version>
<name>${projectName}</name>
<description>${projectDescription}</description>
<url>https://github.com/saphyra/${artifactId}</url>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.1.3.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/jul-to-slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.25</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok-maven -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven</artifactId>
<version>1.16.20.0</version>
<type>pom</type>
</dependency>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.0</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.21.0</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.0.2.RELEASE</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.0</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<!-- Deploy to Maven Central-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</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>2.2.1</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>2.9.1</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>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Bernat Bonda</name>
<email>bondabear@gmail.com</email>
<organization>com.github.saphyra</organization>
<organizationUrl>https://github.com/Saphyra</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/saphyra/${artifactId}.git</connection>
<developerConnection>scm:git:ssh://github.com:saphyra/${artifactId}.git</developerConnection>
<url>http://github.com/saphyra/${artifactId}/tree/master</url>
</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>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.github.saphyra.encryption.base.AbstractEncryptor.class
com.github.saphyra.encryption.base.DefaultEncryptor.class
com.github.saphyra.encryption.base.Encryptor.class
com.github.saphyra.encryption.configuration.BeanConfig.class
com.github.saphyra.encryption.EnableEncryption.class
com.github.saphyra.encryption.impl.IntegerEncryptor.class
com.github.saphyra.encryption.impl.PasswordService.class
com.github.saphyra.encryption.impl.StringEncryptor.class
META-INF/maven/com.github.saphyra/encryption/pom.xml
META-INF/maven/com.github.saphyra/encryption/pom.properties
|
依赖Jar: |
spring-context-5.1.3.RELEASE.jar
/org.springframework/spring-context/5.1.3.RELEASE
查看spring-context所有版本文件
jul-to-slf4j-1.7.25.jar
/org.slf4j/jul-to-slf4j/1.7.25
查看jul-to-slf4j所有版本文件
commons-net-3.6.jar
/commons-net/commons-net/3.6
查看commons-net所有版本文件
lombok-maven-1.16.20.0.jar
/org.projectlombok/lombok-maven/1.16.20.0
查看lombok-maven所有版本文件
lombok-1.18.0.jar
/org.projectlombok/lombok/1.18.0
查看lombok所有版本文件
mockito-core-2.21.0.jar
/org.mockito/mockito-core/2.21.0
查看mockito-core所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|