Fixes problem with space in properties path
This commit is contained in:
parent
700dd58514
commit
e7cab478b3
2 changed files with 20 additions and 46 deletions
26
pom.xml
26
pom.xml
|
@ -100,32 +100,6 @@
|
||||||
<artifactId>maven-scm-publish-plugin</artifactId>
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||||
<version>1.1</version>
|
<version>1.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- The following plugin doesn't modify the build. It is
|
|
||||||
only used to hide irrelevant warnings in Eclipse -->
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.eclipse.m2e</groupId>
|
|
||||||
<artifactId>lifecycle-mapping</artifactId>
|
|
||||||
<version>1.0.0</version>
|
|
||||||
<configuration>
|
|
||||||
<lifecycleMappingMetadata>
|
|
||||||
<pluginExecutions>
|
|
||||||
<pluginExecution>
|
|
||||||
<pluginExecutionFilter>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-dependency-plugin</artifactId>
|
|
||||||
<versionRange>[1.0.0,)</versionRange>
|
|
||||||
<goals>
|
|
||||||
<goal>copy-dependencies</goal>
|
|
||||||
</goals>
|
|
||||||
</pluginExecutionFilter>
|
|
||||||
<action>
|
|
||||||
<ignore />
|
|
||||||
</action>
|
|
||||||
</pluginExecution>
|
|
||||||
</pluginExecutions>
|
|
||||||
</lifecycleMappingMetadata>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.felix</groupId>
|
<groupId>org.apache.felix</groupId>
|
||||||
<artifactId>maven-bundle-plugin</artifactId>
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
|
|
@ -175,29 +175,29 @@ public abstract class AbstractJettyTest extends TestCase {
|
||||||
try {
|
try {
|
||||||
setupServer();
|
setupServer();
|
||||||
|
|
||||||
|
|
||||||
|
final URL url = this.getClass().getClassLoader().getResource("testuser.properties");
|
||||||
|
final UserRealm userRealm = new HashUserRealm("test", url.toString());
|
||||||
|
|
||||||
|
final BasicAuthenticator basicauthenticator = new BasicAuthenticator();
|
||||||
|
|
||||||
|
final SecurityHandler securityHandler = new SecurityHandler();
|
||||||
|
|
||||||
|
final SecurityConstraint securityConstraint = new SecurityConstraint();
|
||||||
|
securityConstraint.setName("test");
|
||||||
|
securityConstraint.addRole("*");
|
||||||
|
securityConstraint.setAuthenticate(true);
|
||||||
|
|
||||||
|
final ServletHandler servletHandler = createServletHandler();
|
||||||
|
|
||||||
final HttpContext context = createContext();
|
final HttpContext context = createContext();
|
||||||
|
context.setRealm(userRealm);
|
||||||
final URL url = this.getClass().getResource("/testuser.properties");
|
context.setAuthenticator(basicauthenticator);
|
||||||
final UserRealm ur = new HashUserRealm("test", url.getFile());
|
context.addHandler(securityHandler);
|
||||||
context.setRealm(ur);
|
context.addSecurityConstraint("/", securityConstraint);
|
||||||
|
context.addHandler(servletHandler);
|
||||||
final BasicAuthenticator ba = new BasicAuthenticator();
|
|
||||||
context.setAuthenticator(ba);
|
|
||||||
|
|
||||||
final SecurityHandler sh = new SecurityHandler();
|
|
||||||
context.addHandler(sh);
|
|
||||||
|
|
||||||
final SecurityConstraint sc = new SecurityConstraint();
|
|
||||||
sc.setName("test");
|
|
||||||
sc.addRole("*");
|
|
||||||
sc.setAuthenticate(true);
|
|
||||||
context.addSecurityConstraint("/", sc);
|
|
||||||
|
|
||||||
final ServletHandler servlets = createServletHandler();
|
|
||||||
context.addHandler(servlets);
|
|
||||||
|
|
||||||
server.addContext(context);
|
server.addContext(context);
|
||||||
|
|
||||||
server.start();
|
server.start();
|
||||||
|
|
||||||
final FeedFetcher feedFetcher = getAuthenticatedFeedFetcher();
|
final FeedFetcher feedFetcher = getAuthenticatedFeedFetcher();
|
||||||
|
|
Loading…
Reference in a new issue