https://medium.com/@jucinei/solu%C3%A7%C3%A3o-itms-90683-missing-purpose-string-in-info-plist-58d0357d2a4
http://ge.tt/4HOl7ej2
https://blog.bam.tech/developer-news/fix-apples-privacy-sensitive-data-permission-errors
war {
archiveName = project.property('warName')
}
https://discuss.gradle.org/t/how-do-i-change-the-name-of-the-war-file-being-built/9223/3
Editing the dependency’s bower.json file is what I was after. (bower_components/FOLDER/bower.json)
changed:
"main": "rzslider.js",
To
"main": [
"rzslider.js",
"dist/rzslider.css"
],
This sticks the css file in my index.html under the vendor section. Hopefully this’ll help anyone else who comes along and struggles with this.
Para gerar o build com o maven, sem ignorar os testes, seria:
mvn clean install
Para você ignorar os testes unitários precisa colocar “-DskipTests”, então ficaria.
mvn clean install -DskipTests
Para você ignorar os testes de integração precisa colocar “-DskipITs”, então ficaria.
mvn clean install -DskipITs
Mas se você quiser ignorar tanto os teste unitários como de integração, ficará assim.
mvn clean install -Dmaven.test.skip=true
Observação: Para que funcione o “-Dmaven.test.skip=true”, você deve ter este profile no pom.xml:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.4</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin>