我使用Acceleo创建了一个创建.jar应用程序的maven项目...我有一个" generate.mtl"文件,调用其他.mtl文件,其中一个是以下genPOM.mtl
[comment encoding = UTF-8 /]
[module genPOM('file:/C:/Users/xxx/workspace/PSMToText/model/PSMMetamodel.ecore')]
[template public genPOM(aService : Service)]
[file (aService.name + '/pom.xml', false, '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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>"some-group-id"</groupId>
<artifactId>[aService.name/]</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>[aService.name/]</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-bundle</artifactId>
<version>1.19.1</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
[if (aServicePSM.serviceDatabaseType = 'MySQL')]
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.38</version>
</dependency>
[else]
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.3-1100-jdbc4</version>
<scope>compile</scope>
</dependency>
[/if]
</dependencies>
<build>
<finalName>[aService.name/]</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>[aService.name/]ServiceTester.[aService.name/]ServiceTester</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
[/file]
[/template]
我有一些Acceleo代码生成了许多.java文件,其主要功能存在于以下名为WSATServiceTester.java的文件中:
package WSATServiceTester;
public class WSATServiceTester {
public static void main(String[] args) {
testService();
}
public static void testService(){
//blah blah code...
}
};
所以...我的Acceleo代码在&#34; ... / PSMToText / output&#34;中产生了一些java文件。目录和&#34; ... / PSMToText / output / WSAT&#34;中的pom.xml文件;目录......别无其他..
现在..当我浏览&#34; ... / output / WSAT&#34;目录和写&#34; mvn包&#34;我得到以下&#34;建立成功&#34;信息
和&#34;目标&#34;文件夹是在&#34; ... / output / WSAT&#34;中创建的。包含WSAT.jar文件和&#34; maven-archiver&#34;的目录包含&#34; pom.properties&#34;的文件夹文件是以下
#Generated by Maven
#Wed Jun 28 18:07:10 EEST 2017
version=1.0-SNAPSHOT
groupId="some-group-id"
artifactId=WSAT
但是...当我尝试执行.jar文件时写入&#34; java -jar WSAT.jar&#34;我收到这条消息:
错误:无法找到或加载主类 WSATServiceTester.WSATServiceTester
所以..我搜索了很多并在这里搜索并阅读了一个MANIFEST.MF文件,该文件应该包含有关在哪里找到主类的配置但是我不能以某种方式生成...也是& #34; pom.properties&#34;文件中没有任何内容。
我在一般情况下混淆了所有的加速器 - maven-java-pom.xml-MANIFEST.MF,所以任何帮助都会......有用... :)
如果我觉得这太令人困惑,我愿意回答你的任何问题......
提前致谢:)