组织ID: |
com.jamesmurty.utils |
项目ID: |
java-xmlbuilder |
版本: |
1.2 |
最后修改时间: |
2018-07-27 20:18:57 |
包类型: |
jar |
标题: |
java-xmlbuilder |
描述: |
XML Builder is a utility that creates simple XML documents using relatively sparse Java code |
相关URL: |
https://github.com/jmurty/java-xmlbuilder |
大小: |
18.00KB |
|
Maven引入代码: |
<dependency>
<groupId>com.jamesmurty.utils</groupId>
<artifactId>java-xmlbuilder</artifactId>
<version>1.2</version>
</dependency>
|
Gradle引入代码: |
com.jamesmurty.utils:java-xmlbuilder: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>com.jamesmurty.utils</groupId>
<artifactId>java-xmlbuilder</artifactId>
<packaging>jar</packaging>
<version>1.2</version>
<name>java-xmlbuilder</name>
<description>XML Builder is a utility that creates simple XML documents using relatively sparse Java code</description>
<url>https://github.com/jmurty/java-xmlbuilder</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/jmurty/java-xmlbuilder.git</connection>
<developerConnection>scm:git:git@github.com:jmurty/java-xmlbuilder.git</developerConnection>
<url>https://github.com/jmurty/java-xmlbuilder</url>
<tag>v1.2</tag>
</scm>
<developers>
<developer>
<id>jmurty</id>
<name>James Murty</name>
<url>http://jamesmurty.com</url>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>net.iharder</groupId>
<artifactId>base64</artifactId>
<version>2.3.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<pushChanges>false</pushChanges>
<arguments>-Dgpgsign=true</arguments>
</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</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<!-- Prevent GPG signing of generated artifacts unless explicitly requested -->
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>gpgsign</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.jamesmurty.utils.BaseXMLBuilder.class
com.jamesmurty.utils.NamespaceContextImpl.class
com.jamesmurty.utils.XMLBuilder.class
com.jamesmurty.utils.XMLBuilder2.class
com.jamesmurty.utils.XMLBuilderRuntimeException.class
META-INF/maven/com.jamesmurty.utils/java-xmlbuilder/pom.xml
META-INF/maven/com.jamesmurty.utils/java-xmlbuilder/pom.properties
|
依赖Jar: |
base64-2.3.8.jar
/net.iharder/base64/2.3.8
查看base64所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
|