Sto usando Maven 3.0.3 con JUnit 4.8.1. Nel mio test JUnit, come faccio a leggere il project.artifactId definito nel mio file Maven pom.xml? Nel mio pom, hoCome leggere le proprietà Maven dal test JUnit?
<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>com.myco.pplus2</groupId>
<artifactId>pplus2</artifactId>
Ma questo non sta funzionando nel mio test JUnit per Gete l'artefatto id ...
@Before
public void setUp() {
...
System.out.println("artifactId:" + System.getProperty("project.build.sourceEncoding"));
} // setUp
Le uscite di cui sopra "artifactId: null". In ogni caso, apprezzare qualsiasi aiuto, - Dave
Eventuali duplicati di [Come recuperare le proprietà Maven all'interno di un test JUnit?] (http://stackoverflow.com/questions/247346/how-to-retrieve-maven-properties-inside-a-junit-test) – approxiblue