Skip to content

Commit

Permalink
Roll spring-boot-maven-settings into the CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Jan 14, 2014
1 parent 719b47f commit 895daac
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 48 deletions.
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
<module>spring-boot-actuator</module>
<module>spring-boot-starters</module>
<module>spring-boot-cli</module>
<module>spring-boot-maven-settings</module>
</modules>
</profile>
<profile>
Expand Down
9 changes: 4 additions & 5 deletions spring-boot-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-maven-settings</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-xml</artifactId>
Expand Down Expand Up @@ -82,6 +77,10 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-settings-builder</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.springframework.boot.maven.settings;
package org.springframework.boot.cli.compiler.grape;

import java.io.File;

Expand All @@ -23,7 +23,6 @@
import org.eclipse.aether.util.repository.DefaultAuthenticationSelector;
import org.eclipse.aether.util.repository.DefaultMirrorSelector;
import org.eclipse.aether.util.repository.DefaultProxySelector;
import org.springframework.boot.cli.compiler.grape.RepositorySystemSessionAutoConfiguration;

/**
* Auto-configuration for a RepositorySystemSession that uses Maven's settings.xml to
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.springframework.boot.cli.compiler.grape.SettingsXmlRepositorySystemSessionAutoConfiguration
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.springframework.boot.maven.settings;
package org.springframework.boot.cli.compiler.grape;

import org.apache.maven.repository.internal.MavenRepositorySystemUtils;
import org.apache.maven.settings.building.SettingsBuildingException;
Expand All @@ -11,6 +11,7 @@
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.boot.cli.compiler.grape.SettingsXmlRepositorySystemSessionAutoConfiguration;

import static org.junit.Assert.assertNotNull;

Expand Down
38 changes: 0 additions & 38 deletions spring-boot-maven-settings/pom.xml

This file was deleted.

This file was deleted.

0 comments on commit 895daac

Please sign in to comment.