-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ARQ tests to managed-executor-service QS
- Loading branch information
Showing
2 changed files
with
36 additions
and
25 deletions.
There are no files selected for viewing
25 changes: 0 additions & 25 deletions
25
managed-executor-service/src/main/webapp/WEB-INF/faces-config.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
JBoss, Home of Professional Open Source | ||
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual | ||
contributors by the @authors tag. See the copyright.txt in the | ||
distribution for a full listing of individual contributors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!-- This is an unmanaged datasource. It should be used for proofs of concept | ||
or testing only. It uses H2, an in memory database that ships with JBoss | ||
AS. --> | ||
<datasources xmlns="http://www.jboss.org/ironjacamar/schema" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.jboss.org/ironjacamar/schema http://docs.jboss.org/ironjacamar/schema/datasources_1_0.xsd"> | ||
<!-- The datasource is bound into JNDI at this location. We reference | ||
this in META-INF/persistence.xml --> | ||
<datasource jndi-name="java:jboss/datasources/ManagedExecutorServiceDS" pool-name="managed-executor-service-quickstart" enabled="true" | ||
use-java-context="true"> | ||
<connection-url>jdbc:h2:mem:managed-executor-service-quickstart;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=-1</connection-url> | ||
<driver>h2</driver> | ||
<security> | ||
<user-name>sa</user-name> | ||
<password>sa</password> | ||
</security> | ||
</datasource> | ||
</datasources> | ||
|