[JBoss JIRA] (WFLY-9661) Can't find wildfly-spec-api-10.1.0.Final.jar in Maven Central
by Instantiation Exception (JIRA)
[ https://issues.jboss.org/browse/WFLY-9661?page=com.atlassian.jira.plugin.... ]
Instantiation Exception updated WFLY-9661:
------------------------------------------
Issue Type: Bug (was: Feature Request)
> Can't find wildfly-spec-api-10.1.0.Final.jar in Maven Central
> -------------------------------------------------------------
>
> Key: WFLY-9661
> URL: https://issues.jboss.org/browse/WFLY-9661
> Project: WildFly
> Issue Type: Bug
> Reporter: Instantiation Exception
> Assignee: Jason Greene
>
> I have the following Maven configuration:
> {code:xml}
> <?xml version="1.0" encoding="UTF-8"?>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
> <modelVersion>4.0.0</modelVersion>
> <groupId>mycompany</groupId>
> <artifactId>payment</artifactId>
> <version>1.0-SNAPSHOT</version>
> <packaging>war</packaging>
> <name>payment</name>
> <properties>
> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
> <maven.compiler.source>1.8</maven.compiler.source>
> <maven.compiler.target>1.8</maven.compiler.target>
> <failOnMissingWebXml>false</failOnMissingWebXml>
> </properties>
> <dependencyManagement>
> <dependencies>
> <dependency>
> <groupId>org.wildfly.bom</groupId>
> <artifactId>wildfly-javaee7-with-tools</artifactId>
> <version>10.1.0.Final</version>
> <type>pom</type>
> <scope>import</scope>
> </dependency>
> </dependencies>
> </dependencyManagement>
> <dependencies>
> <dependency>
> <groupId>org.wildfly</groupId>
> <artifactId>wildfly-spec-api</artifactId>
> <version>10.1.0.Final</version>
> <scope>provided</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.resteasy</groupId>
> <artifactId>resteasy-jaxrs</artifactId>
> <scope>provided</scope>
> </dependency>
> <dependency>
> <groupId>org.hibernate</groupId>
> <artifactId>hibernate-validator</artifactId>
> <scope>provided</scope>
> </dependency>
> <dependency>
> <groupId>org.projectlombok</groupId>
> <artifactId>lombok</artifactId>
> <version>1.16.12</version>
> <scope>provided</scope>
> </dependency>
> <dependency>
> <groupId>org.flywaydb</groupId>
> <artifactId>flyway-core</artifactId>
> <version>4.0.2</version>
> </dependency>
> <dependency>
> <groupId>com.google.guava</groupId>
> <artifactId>guava</artifactId>
> <version>20.0</version>
> </dependency>
> <dependency>
> <groupId>io.rest-assured</groupId>
> <artifactId>rest-assured</artifactId>
> <version>3.0.2</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>junit</groupId>
> <artifactId>junit</artifactId>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.hamcrest</groupId>
> <artifactId>hamcrest-library</artifactId>
> <version>1.3</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.mockito</groupId>
> <artifactId>mockito-core</artifactId>
> <version>1.10.19</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.junit</groupId>
> <artifactId>arquillian-junit-container</artifactId>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.graphene</groupId>
> <artifactId>graphene-webdriver</artifactId>
> <type>pom</type>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.wildfly.arquillian</groupId>
> <artifactId>wildfly-arquillian-container-remote</artifactId>
> <scope>test</scope>
> </dependency>
> </dependencies>
> <build>
> <finalName>payment</finalName>
> </build>
> </project>
> {code}
> I type
> {code}
> mvn clean package
> {code}
> and I get following error
> {code}
> [INFO] ------------------------------------------------------------------------
> Downloading: https://repo.maven.apache.org/maven2/org/wildfly/wildfly-spec-api/10.1.0....
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 2.262 s
> [INFO] Finished at: 2018-01-10T15:50:43+01:00
> [INFO] Final Memory: 20M/399M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal on project payment: Could not resolve dependencies for project mycompany:payment:war:1.0-SNAPSHOT: Could not find artifact org.wildfly:wildfly-spec-api:jar:10.1.0.Final in central (https://repo.maven.apache.org/maven2) -> [Help 1]
> [ERROR]
> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
> [ERROR] For more information about the errors and possible solutions, please read the following articles:
> [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionExce...
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFLY-9661) Can't find wildfly-spec-api-10.1.0.Final.jar in Maven Central
by Instantiation Exception (JIRA)
Instantiation Exception created WFLY-9661:
---------------------------------------------
Summary: Can't find wildfly-spec-api-10.1.0.Final.jar in Maven Central
Key: WFLY-9661
URL: https://issues.jboss.org/browse/WFLY-9661
Project: WildFly
Issue Type: Feature Request
Reporter: Instantiation Exception
Assignee: Jason Greene
I have the following Maven configuration:
{code:xml}
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>mycompany</groupId>
<artifactId>payment</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>payment</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-javaee7-with-tools</artifactId>
<version>10.1.0.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-spec-api</artifactId>
<version>10.1.0.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>3.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.graphene</groupId>
<artifactId>graphene-webdriver</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly.arquillian</groupId>
<artifactId>wildfly-arquillian-container-remote</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>payment</finalName>
</build>
</project>
{code}
I type
{code}
mvn clean package
{code}
and I get following error
{code}
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/wildfly/wildfly-spec-api/10.1.0....
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.262 s
[INFO] Finished at: 2018-01-10T15:50:43+01:00
[INFO] Final Memory: 20M/399M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project payment: Could not resolve dependencies for project mycompany:payment:war:1.0-SNAPSHOT: Could not find artifact org.wildfly:wildfly-spec-api:jar:10.1.0.Final in central (https://repo.maven.apache.org/maven2) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionExce...
{code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (ELY-1486) Support credential-store-reference in oauth2-bearer-token client configuration
by Pedro Igor (JIRA)
Pedro Igor created ELY-1486:
-------------------------------
Summary: Support credential-store-reference in oauth2-bearer-token client configuration
Key: ELY-1486
URL: https://issues.jboss.org/browse/ELY-1486
Project: WildFly Elytron
Issue Type: Task
Components: Authentication Client
Affects Versions: 1.2.0.Beta11
Reporter: Pedro Igor
Assignee: Pedro Igor
Currently, when using oauth2-bearer-token in client configuration, passwords and client secrets are defined in clear format.
This issue aims to support obtaining these credentials from a credential store.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFCORE-3503) Duplicate commands in Help
by Vratislav Marek (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3503?page=com.atlassian.jira.plugi... ]
Vratislav Marek commented on WFCORE-3503:
-----------------------------------------
I tested fix in pull-request, fix looks good.
{noformat}
[standalone@localhost:9990 /] help --commands
Commands available in the current context:
attachment deploy deployment info for patch history run-batch
batch deployment deploy-cli-archive deployment list grep patch info set
cd deployment deploy-file deployment undeploy help patch inspect shutdown
clear deployment deploy-url deployment undeploy-cli-archive history pwd try
command deployment disable deployment-info if quit undeploy
command-timeout deployment disable-all deployment-overlay ls read-attribute unset
connect deployment enable echo module read-operation version
connection-info deployment enable-all echo-dmr patch apply reload
To read a description of a specific command execute 'help <command name>'.
{noformat}
Thank-you.
> Duplicate commands in Help
> --------------------------
>
> Key: WFCORE-3503
> URL: https://issues.jboss.org/browse/WFCORE-3503
> Project: WildFly Core
> Issue Type: Bug
> Components: CLI
> Reporter: Vratislav Marek
> Assignee: Jean-Francois Denise
>
> I found duplicate command in CLI help
> For example twice commands:
> * attachment
> * if
> * undeploy
> * command
> I see this issue in this [pull request|https://github.com/wildfly/wildfly-core/pull/2946/commits/3eae7f7...]
> {noformat}
> [standalone@localhost:9990 /] help --commands
> Commands available in the current context:
> attachment connection-info deployment undeploy help pwd set
> attachment connection-info deployment undeploy-cli-archive history pwd shutdown
> batch deploy deployment-info history quit shutdown
> batch deploy deployment-info if quit try
> cd deployment deploy-cli-archive deployment-overlay if read-attribute try
> cd deployment deploy-file deployment-overlay ls read-attribute undeploy
> clear deployment deploy-url echo ls read-operation undeploy
> clear deployment disable echo module read-operation unset
> command deployment disable-all echo-dmr module reload unset
> command deployment enable echo-dmr patch apply reload version
> command-timeout deployment enable-all for patch history run-batch
> command-timeout deployment info for patch info run-batch
> connect deployment list grep patch inspect set
> To read a description of a specific command execute 'help <command name>'.
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFCORE-3504) Logout redirect failed from a management Web console using IE
by Bartosz Spyrko-Śmietanko (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3504?page=com.atlassian.jira.plugi... ]
Bartosz Spyrko-Śmietanko moved JBEAP-14071 to WFCORE-3504:
----------------------------------------------------------
Project: WildFly Core (was: JBoss Enterprise Application Platform)
Key: WFCORE-3504 (was: JBEAP-14071)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: Domain Management
(was: Web Console)
Affects Version/s: 4.0.0.Alpha6
(was: 7.1.0.GA)
(was: 7.0.9.GA)
> Logout redirect failed from a management Web console using IE
> -------------------------------------------------------------
>
> Key: WFCORE-3504
> URL: https://issues.jboss.org/browse/WFCORE-3504
> Project: WildFly Core
> Issue Type: Bug
> Components: Domain Management
> Affects Versions: 4.0.0.Alpha6
> Environment: EAP 7.0.9 and EAP 7.1
> IE 11(internete explorer11 11.192.16200.0)
> Reporter: Bartosz Spyrko-Śmietanko
> Assignee: Bartosz Spyrko-Śmietanko
> Priority: Minor
>
> When we logout from a management console with IE, the logout redirect is failed with an Error Code"INET_E_INVALID_URL".
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFCORE-3501) Allow System properties to be set at parse time before extensions are loaded in standalone mode
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3501?page=com.atlassian.jira.plugi... ]
Brian Stansberry updated WFCORE-3501:
-------------------------------------
Issue Type: Task (was: Feature Request)
Description: Subject says it all, except that if the property value includes an expression and the expression cannot be resolved at parse time, the property will not be set at parse time and the logic already in place will deal with it. There should be no reason for anyone to use an expression, certainly not an unresolvable one, in a property that needs to be set before extensions are loaded.
> Allow System properties to be set at parse time before extensions are loaded in standalone mode
> -----------------------------------------------------------------------------------------------
>
> Key: WFCORE-3501
> URL: https://issues.jboss.org/browse/WFCORE-3501
> Project: WildFly Core
> Issue Type: Task
> Reporter: Stuart Douglas
> Assignee: Stuart Douglas
>
> Subject says it all, except that if the property value includes an expression and the expression cannot be resolved at parse time, the property will not be set at parse time and the logic already in place will deal with it. There should be no reason for anyone to use an expression, certainly not an unresolvable one, in a property that needs to be set before extensions are loaded.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months