组织ID: |
org.popperfw |
项目ID: |
Interfaces |
版本: |
0.6 |
最后修改时间: |
2019-07-12 09:16:01 |
包类型: |
jar |
标题: |
Popper Framework Interfaces |
描述: |
Definition of the interfaces all Popper Framework
implementations depend on |
相关URL: |
http://popperfw.org/ |
大小: |
27.60KB |
|
Maven引入代码: |
<dependency>
<groupId>org.popperfw</groupId>
<artifactId>Interfaces</artifactId>
<version>0.6</version>
</dependency>
|
Gradle引入代码: |
org.popperfw:Interfaces:0.6
|
下载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>
<!-- <parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent> -->
<groupId>org.popperfw</groupId>
<artifactId>Interfaces</artifactId>
<packaging>jar</packaging>
<version>0.6</version>
<name>Popper Framework Interfaces</name>
<description>Definition of the interfaces all Popper Framework
implementations depend on</description>
<url>http://popperfw.org/</url>
<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>
<scm>
<url>https://svn.code.sf.net/p/popperfw/svn/trunk/Interfaces</url>
<connection>scm:svn:https://svn.code.sf.net/p/popperfw/svn/trunk/Interfaces</connection>
</scm>
<developers>
<developer>
<id>1</id>
<name>Michael Bulla</name>
<email>michaelbulla@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>0.9.2</version>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.12.1.GA</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<wtpversion>2.0</wtpversion>
</configuration>
</plugin>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<tagBase>
https://svn.code.sf.net/p/popperfw/svn/tags/
</tagBase>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshot</id>
<name>MyCo Internal Repository</name>
<!-- <url>http://builds.mooo.com:8080/nexus/content/repositories/snapshots</url> -->
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.popper.fw.annotations.DefaultConstructor.class
org.popper.fw.annotations.ElementFactory.class
org.popper.fw.annotations.ImplementedBy.class
org.popper.fw.annotations.naming.Accessor.class
org.popper.fw.annotations.naming.Action.class
org.popper.fw.annotations.naming.ParamName.class
org.popper.fw.annotations.Page.class
org.popper.fw.annotations.RunAfter.class
org.popper.fw.annotations.RunBefore.class
org.popper.fw.annotations.Type.class
org.popper.fw.annotations.VerifyBy.class
org.popper.fw.element.IButton.class
org.popper.fw.element.ICheckbox.class
org.popper.fw.element.IElement.class
org.popper.fw.element.IFileupload.class
org.popper.fw.element.IImage.class
org.popper.fw.element.IInput.class
org.popper.fw.element.ILabel.class
org.popper.fw.element.ILink.class
org.popper.fw.element.IRadioButton.class
org.popper.fw.element.ISelectBox.class
org.popper.fw.element.ITextBox.class
org.popper.fw.impl.AbstractPopperContext$ObjectInstantiator.class
org.popper.fw.impl.AbstractPopperContext.class
org.popper.fw.impl.CycleException.class
org.popper.fw.impl.ImplHolder.class
org.popper.fw.impl.PageObjectImplementation.class
org.popper.fw.impl.ReflectionsUtil.class
org.popper.fw.impl.ReturnTypeHandler$ReturnTypeFactory.class
org.popper.fw.impl.ReturnTypeHandler.class
org.popper.fw.interfaces.IAnnotationProcessor.class
org.popper.fw.interfaces.IClassResolver.class
org.popper.fw.interfaces.IElementFactory.class
org.popper.fw.interfaces.IPoFactory.class
org.popper.fw.interfaces.LocatorContextInformation.class
org.popper.fw.interfaces.ReEvalutateException.class
META-INF/maven/org.popperfw/Interfaces/pom.xml
META-INF/maven/org.popperfw/Interfaces/pom.properties
|
依赖Jar: |
jgrapht-core-0.9.2.jar
/org.jgrapht/jgrapht-core/0.9.2
查看jgrapht-core所有版本文件
javassist-3.12.1.GA.jar
/javassist/javassist/3.12.1.GA
查看javassist所有版本文件
log4j-1.2.13.jar
/log4j/log4j/1.2.13
查看log4j所有版本文件
|