pom.xml Questions
3
Solved
Typically, a maven built jar artifact will have it's pom included under META-INF. I recently noticed that the Spring jars don't have this. So, that causes me to wonder about the purpose of that pom...
3
Solved
I have a pom.xml file that includes my project version like this
<version> 1.14.0 </version>
and I also have a YAML file that autogenerates a GitHub tag when the tests have passed a...
Psia asked 6/5, 2019 at 8:42
6
Solved
I try to compile maven web project with
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws</artifactId>
<version>3.0.5-FINAL</v...
Nanci asked 28/11, 2011 at 11:56
3
Solved
I was trying to build a project about API authentication using JWT. I have installed the io.jsonwebtoken package with version 0.9.1 in order to do that.
My pom.xml
<?xml version="1.0" ...
Deltadeltaic asked 18/10, 2020 at 14:40
20
Solved
I keep getting this error when I try to compile my code. I have the pom.xml file in my directories but I am not sure if there is something wrong in there. I found only one link on the internet rega...
Protactinium asked 14/8, 2015 at 15:15
13
Solved
I am currently playing with some proof-of-concept work in Spring Boot and GCP data storage.
My pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>...
Alguire asked 28/11, 2020 at 3:15
15
Solved
Dear Stackoverflow Community, I have the following problem with my spring boot starter application. I imported the starter project as a new maven project into IntelliJ. But IntelliJ does not find t...
Unicameral asked 20/12, 2018 at 12:51
2
Solved
In regular Netbeans project you have a build.xml where I am able to copy the generated JAR file to a different folder(s) using the following:
<target name ="-post-jar" >
<copy file ="${...
4
Solved
I am trying to create a maven project using Spring Framework Cloud.
I defined pom.xml file as below
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spr...
Duplessismornay asked 7/12, 2017 at 7:50
12
Solved
I am trying to add MS SQL driver dependency in my POM.xml file and the following is the dependency.
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sq...
Impudent asked 23/10, 2013 at 9:3
5
Could someone suggest me a solution why when I run the test using command mvn test to run the cucumber runner class ExampleRunnerTest located in \src\test\java it runs but the maven build doesn't r...
Exhalant asked 29/6, 2015 at 13:46
6
Solved
If I have a pom hierarchy in which the superpom calls multiple submodules which depend on one another, how can I list the build/compilation sequence based on dependencies? IOW, if the superpom has ...
10
Solved
Created project with Spring, Hibernate & Maven. My question is what is the logic behind plugin versus dependency ?
Hyperion asked 9/8, 2012 at 10:45
4
Solved
In Gradle, how can I generate a POM file with dynamic dependencies resolved to the actual version used?
dependencies {
testCompile(group: 'junit', name: 'junit', version: '4.+')
}
This is gener...
Mazzard asked 6/1, 2014 at 21:25
6
Solved
I have added the dependency in pom.xml
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>...
Italianize asked 10/4, 2013 at 7:11
17
Solved
I'm using Maven 3.0.3 on Mac 10.6.6. I have a JAR project and when I run the command "mvn clean install:install", I'm getting the error,
[ERROR] Failed to execute goal org.apache.maven.pl...
Rozanne asked 10/6, 2011 at 14:59
5
Solved
I would like to automate Firefox using Java through a Selenium WebDriver project.
As I never used Selenium nor Maven before I'm not familiar with how to set up a suitable Maven pom.xml file to cre...
Grabble asked 19/2, 2013 at 12:38
13
Solved
I have a project on Bitbucket. Only the sources are committed. To retrieve the project onto a new machine, I used Version Control > Checkout from Version Control from within IntelliJ.
It then asks...
Mesozoic asked 4/10, 2011 at 1:36
2
Solved
I've created a maven plugin to start, clean and stop a database. My project consists of a pom file with 4 modules:
<modules>
<module>infrastructure</module>
<module>domai...
Paratyphoid asked 18/5, 2011 at 7:3
2
Solved
I'd like to use the maven-replacer-plugin to replace $file-list$ in a file with a comma separated list of files in a folder of my project. Is this possible?
thanks
3
Solved
I am currently getting the below errors when trying to run a Spring Java program.
SLF4J: No SLF4J providers were found.
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http...
5
I am getting the below exception in my pom.xml when trying to run my application. I saw some posts regarding the error and followed them but no use. I understand the artifact(parent) is referred lo...
Hadj asked 7/11, 2018 at 9:54
10
Solved
I am following this guide: https://spring.io/guides/gs/serving-web-content/,
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0...
Houstonhoustonia asked 22/11, 2020 at 11:17
2
Solved
Consider a maven project with modules consists of some utilities (jar) and some poms for others to reference to if they want to use some of these utilities.
e.g. inside the parent pom.xml
<art...
Superannuated asked 6/5, 2016 at 0:44
4
I'm trying to create empty Maven Web Project with an existing dir (actually from github project, it's empty and contains only README file).
But maven seems to detect directory existence and failed...
Amortizement asked 1/9, 2014 at 6:52
1 Next >
© 2022 - 2024 — McMap. All rights reserved.