Skip to content

Commit

Permalink
Feature/selenium test (#104)
Browse files Browse the repository at this point in the history
* update .travis.yml
create new Selenium tests

* update Selenium tests

* update Selenium tests

* - add commons-io for file reading
- refactoring drag and drop test

* feature/deploy-tests merged
  • Loading branch information
MarcusBaitz committed Jul 2, 2018
1 parent 518547c commit 1f82e34
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ package-lock.json
# JetBrains WebStorm
.idea

*.tgz
8 changes: 8 additions & 0 deletions frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- Initiation Frontend -->
<plugin>
<groupId>com.github.eirslett</groupId>
Expand Down
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,27 @@
<module>selenium-test</module>
</modules>

<distributionManagement>
<snapshotRepository>
<id>bakdata-snapshot</id>
<name>bakdata AWS S3 Snapshot Repository</name>
<url>s3://bakdata-maven/snapshot</url>
</snapshotRepository>
<repository>
<id>bakdata-release</id>
<name>bakdata AWS S3 Release Repository</name>
<url>s3://bakdata-maven/release</url>
</repository>
</distributionManagement>

<build>
<extensions>
<extension>
<groupId>org.springframework.build</groupId>
<artifactId>aws-maven</artifactId>
<version>5.0.0.RELEASE</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
Expand Down

0 comments on commit 1f82e34

Please sign in to comment.