Changeset 2220
- Timestamp:
- 11/30/17 16:18:04 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-runner/pom.xml
r2197 r2220 36 36 </dependency> 37 37 <dependency> 38 <groupId>de.ugoe.cs.autoquest</groupId>39 <artifactId>autoquest-ui-swt</artifactId>40 <version>${project.parent.version}</version>41 <classifier>${envClassifier}</classifier>42 </dependency>43 <dependency>44 38 <groupId>net.sf.jopt-simple</groupId> 45 39 <artifactId>jopt-simple</artifactId> … … 61 55 </os> 62 56 </activation> 63 <properties> 64 <envClassifier>Windows-x86</envClassifier> 65 </properties> 57 <dependencies> 58 <dependency> 59 <groupId>de.ugoe.cs.autoquest</groupId> 60 <artifactId>autoquest-ui-swt</artifactId> 61 <version>${project.parent.version}</version> 62 <classifier>Windows-x86</classifier> 63 </dependency> 64 </dependencies> 65 <build> 66 <plugins> 67 <plugin> 68 <groupId>org.apache.maven.plugins</groupId> 69 <artifactId>maven-jar-plugin</artifactId> 70 <configuration> 71 <archive> 72 <manifest> 73 <addClasspath>true</addClasspath> 74 <classpathPrefix>lib/</classpathPrefix> 75 <mainClass>de.ugoe.cs.autoquest.ui.Runner</mainClass> 76 </manifest> 77 </archive> 78 <classifier>Windows-x86</classifier> 79 </configuration> 80 </plugin> 81 </plugins> 82 </build> 66 83 </profile> 67 84 <profile>
Note: See TracChangeset
for help on using the changeset viewer.