组织ID: |
com.e-movimento.tinytools |
项目ID: |
privilegedaccessor |
版本: |
1.2.2 |
最后修改时间: |
2018-08-03 17:14:19 |
包类型: |
jar |
标题: |
privileged accessor |
描述: |
gives privileged access to private and protected methods and attributes.
Use it in testing scenarios to set up your objects under test.
|
相关URL: |
http://code.google.com/p/privilegedaccessor/ |
大小: |
11.60KB |
|
Maven引入代码: |
<dependency>
<groupId>com.e-movimento.tinytools</groupId>
<artifactId>privilegedaccessor</artifactId>
<version>1.2.2</version>
</dependency>
|
Gradle引入代码: |
com.e-movimento.tinytools:privilegedaccessor:1.2.2
|
下载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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.e-movimento.tinytools</groupId>
<artifactId>privilegedaccessor</artifactId>
<version>1.2.2</version>
<name>privileged accessor</name>
<description>
gives privileged access to private and protected methods and attributes.
Use it in testing scenarios to set up your objects under test.
</description>
<url>http://code.google.com/p/privilegedaccessor/</url>
<packaging>jar</packaging>
<inceptionYear>2005</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Used to upload artifacts to maven central - provides e.g. distributionManagement -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<!-- Do NOT provide release or plugin repositories, otherwise automatic deployment of artifacts to public repositories fails -->
<!-- see https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide -->
<!-- <repositories></repositories> -->
<!-- <pluginRepositories></pluginRepositories> -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<version.java>1.5</version.java>
</properties>
<scm>
<url>http://privilegedaccessor.googlecode.com/svn/tags/privilegedaccessor-1.2.2</url>
<connection>scm:svn:http://privilegedaccessor.googlecode.com/svn/tags/privilegedaccessor-1.2.2</connection>
<developerConnection>scm:svn:https://privilegedaccessor.googlecode.com/svn/tags/privilegedaccessor-1.2.2</developerConnection>
</scm>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/privilegedaccessor/issues/list</url>
</issueManagement>
<developers>
<developer>
<id>sebidietrich</id>
<name>Sebastian Dietrich</name>
<email>Sebastian.Dietrich at e-movimento.com</email>
<organization>e-movimento Software Design & Beratung GmbH</organization>
<timezone>+1</timezone>
<roles>
<role>lead</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>lubos.bistak</id>
<name>Lubos Bistak</name>
<email>lubos.bistak@gmail.com</email>
<timezone>+1</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<organization>
<name>e-movimento</name>
<url>http://www.e-movimento.com</url>
</organization>
<ciManagement>
<system>Jenkins</system>
<url>https://privileged-accessor.ci.cloudbees.com/</url>
</ciManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- to automatically upload releases to google code - see http://code.google.com/p/maven-gcu-plugin/wiki/Usage -->
<plugin>
<groupId>com.googlecode.maven-gcu-plugin</groupId>
<artifactId>maven-gcu-plugin</artifactId>
<version>1.1</version>
<configuration>
<serverId>googlecode</serverId> <!-- default: googlecode -->
<failsOnError>false</failsOnError> <!-- default: false -->
<projectName>privilegedaccessor</projectName> <!-- googlecode name default: ${project.artifactId} -->
<uploads>
<upload>
<file>${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}</file>
<summary>${project.name} bundle ${project.version}</summary>
<labels>
<label>Featured</label>
<label>Type-Jar</label>
</labels>
</upload>
</uploads>
</configuration>
</plugin>
<!-- to automatically deploy releases to nexus - see http://www.sonatype.com/books/nexus-book/reference/staging-sect-deployment.html#staging-sect-deployment-nexus-staging-maven-plugin -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.2</version>
<extensions>true</extensions>
<configuration>
<serverId>local-nexus</serverId>
<nexusUrl>http://localhost:8081/nexus/</nexusUrl>
</configuration>
</plugin>
<!-- to set the version for the compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${version.java}</source>
<target>${version.java}</target>
</configuration>
</plugin>
<!-- to generate sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- to generate javadocs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly-descriptor.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<useDefaultManifestFile>true</useDefaultManifestFile>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<locales>en</locales>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<configuration>
<minSeverity>info</minSeverity>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!-- Generates a changes plugin based on changes at sourceforge -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<inherited>false</inherited>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<issueLinkTemplate>http://code.google.com/p/privilegedaccessor/issues/detail?id=%ISSUE%</issueLinkTemplate>
</configuration>
</plugin>
<plugin>
<!-- Generate a report based on the results of unit tests. -->
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<argLine>-enableassertions</argLine>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<argLine>-enableassertions</argLine>
</configuration>
</plugin>
<!-- TODO, @todo list report -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<!-- Erzeugt den Checkstyle Report -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>.settings/checkstyle-checks.xml</configLocation>
<sourceDirectory>src/main/java</sourceDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>${version.java}</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changelog-maven-plugin</artifactId>
<reportSets>
<reportSet>
<id>dual-report</id>
<configuration>
<type>range</type>
<range>1</range>
</configuration>
<reports>
<report>changelog</report>
<report>file-activity</report>
<report>dev-activity</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dashboard-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
junit.extensions.PA.class
junit.extensions.PrivilegedAccessor.class
META-INF/maven/com.e-movimento.tinytools/privilegedaccessor/pom.xml
META-INF/maven/com.e-movimento.tinytools/privilegedaccessor/pom.properties
|
依赖Jar: |
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
|