Skip to content
This repository has been archived by the owner on Mar 26, 2023. It is now read-only.

Commit

Permalink
Extracted from server.
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlasov committed Jan 3, 2017
1 parent 0db4cfe commit 2a245f6
Show file tree
Hide file tree
Showing 127 changed files with 18,653 additions and 2 deletions.
449 changes: 447 additions & 2 deletions README.md

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
machine:
java:
version: openjdk8

dependencies:
override:
- echo 'Skipping Dependency Check'

test:
override:
- mvn clean package

post:
- mv org.nasdanika.webtest.repository/target/repository $CIRCLE_ARTIFACTS
- mv org.nasdanika.webtest.repository/target/org.nasdanika.webtest.repository-*.zip $CIRCLE_ARTIFACTS

- mvn clean verify javadoc:javadoc

- mkdir $CIRCLE_ARTIFACTS/apidocs
- mkdir $CIRCLE_ARTIFACTS/apidocs/org.nasdanika.webtest
- mv org.nasdanika.webtest/target/site/apidocs $CIRCLE_ARTIFACTS/apidocs/org.nasdanika.webtest

deployment:
staging:
branch: master
commands:
- wget http://nasdanika.org/commons-net-1.4.1.jar
- wget http://nasdanika.org/jakarta-oro-2.0.8.jar
- ant -verbose -f ftp-upload.xml -lib commons-net-1.4.1.jar:jakarta-oro-2.0.8.jar -Dftp.server=$DEPLOY_FTP_SERVER -Dftp.user=$DEPLOY_FTP_USER -Dftp.password=$DEPLOY_FTP_PASSWORD -Dcircle.artifacts=$CIRCLE_ARTIFACTS
Binary file added examples.app.tests-dependency-graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions ftp-upload.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<project name="FtpUpload" default="upload" basedir=".">
<description>Uploads build results to the server</description>

<target name="upload">

<ftp passive="yes" action="delete" server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" remotedir="/webtest/repository">
<fileset>
<include name="**"/>
</fileset>
</ftp>

<ftp passive="yes" action="rmdir" server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" remotedir="/webtest/repository">
<fileset>
<include name="**"/>
</fileset>
</ftp>

<ftp passive="yes" action="delete" server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" remotedir="/webtest/apidocs">
<fileset>
<include name="**"/>
</fileset>
</ftp>

<ftp passive="yes" action="rmdir" server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" remotedir="/webtest/apidocs">
<fileset>
<include name="**"/>
</fileset>
</ftp>

<ftp passive="yes" server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" remotedir="/webtest">
<fileset dir="${circle.artifacts}"/>
</ftp>
</target>
</project>
26 changes: 26 additions & 0 deletions org.nasdanika.webtest.feature/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
1 change: 1 addition & 0 deletions org.nasdanika.webtest.feature/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
29 changes: 29 additions & 0 deletions org.nasdanika.webtest.feature/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.nasdanika.webtest.feature</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.FeatureBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.FeatureNature</nature>
</natures>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.5
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
1 change: 1 addition & 0 deletions org.nasdanika.webtest.feature/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin.includes = feature.xml
88 changes: 88 additions & 0 deletions org.nasdanika.webtest.feature/feature.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.nasdanika.webtest.feature"
label="Nasdanika WebTest"
version="0.1.0.qualifier">

<description>
Nasdanika HTML/Bootsrapi UI builder.
</description>

<copyright>
Property of Nasdanika LLC.
</copyright>

<license url="http://www.eclipse.org/legal/epl-v10.html">
Eclipse Public License.
</license>

<includes
id="org.nasdanika.html.feature"
version="0.0.0"/>

<includes
id="org.nasdanika.cdo.feature"
version="0.0.0"/>

<plugin
id="org.nasdanika.webtest"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="org.openqa.selenium"
download-size="0"
install-size="0"
version="0.0.0"/>

<plugin
id="org.junit"
download-size="0"
install-size="0"
version="0.0.0"/>

<plugin
id="org.hamcrest.core"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="org.apache.commons.lang3"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="org.nasdanika.webtest.model"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="net.sourceforge.plantuml"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="org.nasdanika.cdo.boxing"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="org.nasdanika.core"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

</feature>
14 changes: 14 additions & 0 deletions org.nasdanika.webtest.feature/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<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>
<artifactId>org.nasdanika.webtest.feature</artifactId>
<packaging>eclipse-feature</packaging>
<parent>
<groupId>org.nasdanika.webtest</groupId>
<artifactId>org.nasdanika.webtest.parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../org.nasdanika.webtest.parent</relativePath>
</parent>
<organization>
<name>Nasdanika LLC</name>
</organization>
</project>
17 changes: 17 additions & 0 deletions org.nasdanika.webtest.parent/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.nasdanika.webtest.parent</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
Loading

0 comments on commit 2a245f6

Please sign in to comment.