| 组织ID: |
be.webtechie |
| 项目ID: |
resistor-calculator |
| 版本: |
0.1.2 |
| 最后修改时间: |
2020-04-06 09:06:03 |
| 包类型: |
jar |
| 标题: |
Resistor calculator |
| 描述: |
Java library to calculate resistor values and their use in circuits |
| 相关URL: |
https://github.com/FDelporte/ResistorCalculator |
| 大小: |
10.76KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>be.webtechie</groupId>
<artifactId>resistor-calculator</artifactId>
<version>0.1.2</version>
</dependency>
|
| Gradle引入代码: |
be.webtechie:resistor-calculator:0.1.2
|
| 下载Jar包: |
|
| POM文件内容: |
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>be.webtechie</groupId>
<artifactId>resistor-calculator</artifactId>
<version>0.1.2</version>
<packaging>jar</packaging>
<name>Resistor calculator</name>
<description>Java library to calculate resistor values and their use in circuits</description>
<url>https://github.com/FDelporte/ResistorCalculator</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Frank Delporte</name>
<email>frank@webtechie.be</email>
<organization>WebTechie.be</organization>
<organizationUrl>https://www.webtechie.be</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/FDelporte/ResistorCalculator.git</connection>
<developerConnection>scm:git:ssh://github.com:FDelporte/ResistorCalculator.git</developerConnection>
<url>http://github.com/FDelporte/ResistorCalculator/tree/master</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.version>11</maven.compiler.version>
<junit.jupiter.version>5.5.2</junit.jupiter.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
<maven-source-plugin.version>3.1.0</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>C:\Program Files (x86)\GnuPG\bin\gpg.exe</gpg.executable>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${maven.compiler.version}</source>
<target>${maven.compiler.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven-plugin.version}</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>${maven-source-plugin.version}</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>${maven-javadoc-plugin.version}</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>${maven-gpg-plugin.version}</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-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
be.webtechie.resistorcalculator.definition.ColorCode.class
be.webtechie.resistorcalculator.DemoApp.class
be.webtechie.resistorcalculator.util.Calculate.class
be.webtechie.resistorcalculator.util.Convert.class
be.webtechie.resistorcalculator.util.ResistorValue.class
module-info.class
META-INF/maven/be.webtechie/resistor-calculator/pom.xml
META-INF/maven/be.webtechie/resistor-calculator/pom.properties
|
| 依赖Jar: |
junit-jupiter-${junit.jupiter.version}.jar
/org.junit.jupiter/junit-jupiter/${junit.jupiter.version}
查看junit-jupiter所有版本文件
|