Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test running and remove travis files (V22) #197

Open
wants to merge 3 commits into
base: V22
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .travis-settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .travis.after_success.sh

This file was deleted.

17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

50 changes: 50 additions & 0 deletions test-settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">

<profiles>
<profile>
<id>test</id>
<activeByDefault>false</activeByDefault>
<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>vaadin-prereleases</id>
<url>https://maven.vaadin.com/vaadin-prereleases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>vaadin-prereleases</id>
<url>https://maven.vaadin.com/vaadin-prereleases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>


</settings>
5 changes: 5 additions & 0 deletions vaadin-archetype-application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
<system>GitHub Issues</system>
<url>https://github.com/vaadin/archetypes/issues</url>
</issueManagement>

<properties>
<!-- Load the snapshot dependency for testing -->
<archetype.test.settingsFile>${project.parent.basedir}/test-settings.xml</archetype.test.settingsFile>
</properties>

<build>
<extensions>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
clean install
clean install -Ptest