は、私はJavaのMavenプロジェクトでは、JavaとGroovyの使用しようとしているこんにちは、私はよくそれを実行するために必要なすべての成果物やプラグインを提供すると思いますが、ここで私のポンポンであります私はこのプロジェクトに触発され、gmaven 1.4、グルーヴィー2.0とJava 7での作業ポンポンを取得する方法を発見した。最後trace正しいmaven groovy gmaven pomの設定は何ですか?ここで構築しようとした後にキャッチされた例外さ <a href="http://pastebin.com/0mcUmbES" rel="nofollow" title="pom">pom content</a> と:
0
A
答えて
2
フルスタックトレースを取得するには、-Xオプションを有効に原因 は、私はそれがペーストビンにリンク"primefaces-groovy-cassandra"
ここには、戦争タイプのアプリケーションの単純なポン:
`<?xml version="1.0" encoding="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>office</groupId>
<artifactId>gmOffice</artifactId>
<name>gmOffice</name>
<version>0.0.1</version>
<packaging>war</packaging>
<properties>
<!-- Configuration -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version>
<!-- Dependencies -->
<javax.servlet.api.version>3.0.1</javax.servlet.api.version>
<primefaces.version>3.2</primefaces.version>
<myfaces.version>2.1.7</myfaces.version>
<!-- Maven plugins -->
<maven.compiler.version>2.4</maven.compiler.version>
<maven.enforcer.version>1.0.1</maven.enforcer.version>
<maven.war.version>2.2</maven.war.version>
<maven.gmaven.version>1.4</maven.gmaven.version>
<netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
<slf4j.version>1.6.1</slf4j.version>
</properties>
<repositories>
<repository>
<id>sonatype-releases</id>
<name>Sonatype Releases Repository</name>
<url>http://oss.sonatype.org/content/repositories/releases/</url>
</repository>
<repository>
<id>primefaces-releases</id>
<name>PrimeFaces Releases Repository</name>
<url>http://repository.primefaces.org</url>
</repository>
</repositories>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>${primefaces.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.19</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.164</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.1.7</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.1.7</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven.enforcer.version}</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.0.0,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[1.6.0,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>${maven.gmaven.version}</version>
<configuration>
<source>src/main/groovy</source>
<providerSelection>2.0</providerSelection>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<configLocation>config/sun_checks.xml</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${maven.war.version}</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Timestamp>${maven.build.timestamp}</Implementation-Timestamp>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
関連する問題
- 1. HBaseのMavenのは、私が建築<a href="http://hbase.apache.org/0.94/book/build.html" rel="nofollow">.Hbase official website</a>を構築Mavenのために新しいですソース
- 2. Springブートで構築された共通サービス用のPom構造
- 3. プロキシは、私たちがこのようなプロキシを設定することができます<a href="http://wwwsearch.sourceforge.net/mechanize/" rel="nofollow">mechanize</a>でzope.testbrowser
- 4. キャッチされない例外TypeError:私はただそこにある問題は、チャートが表示されている<a href="http://jsfiddle.net/ZArZM/" rel="nofollow noreferrer">http://jsfiddle.net/ZArZM/</a></p> <p>この例のようにしかし、コンソールに、2つの以上のチャートから同期ズームをしよう
- 5. Gradle Maven Publishingプラグインで構築されたPOMから依存関係を除外するにはどうすればよいですか?
- 6. AtlassianのConfluenceとMavenのPOMの設定
- 7. Maven pomファイルのsurefireプラグインロケールを設定してください
- 8. JW Playerの構築/私はプレーヤーを構築した後、GitHubの <a href="https://github.com/jwplayer/jwplayer" rel="nofollow noreferrer">https://github.com/jwplayer/jwplayer</a></p> <p>の指示を使用してJWPlayerを構築しようとしている広告
- 9. のMaven POM - プラグインの設定
- 10. 例外(正規のユーザー以外の)一員として接している<a href="https://www.nuget.org/packages/Microsoft.Graph" rel="nofollow">Microsoft.Graph Client Library</a>を使用してグループのメンバーをロードしようとすると、次の例外がスローされMicrosoft.Graphクライアントで
- 11. Kivy - 私はKivyで行われたこの<a href="https://kivy.org/docs/_images/screenmanager.gif" rel="nofollow">gif</a>をコピーしようとしている遷移
- 12. mavenプラグインがローカルのpomプラグインから無視されました
- 13. マウスオーバーアニメーションは右、私はここでは、このサイト <a href="http://www.metalmonde.co.uk/" rel="nofollow">http://www.metalmonde.co.uk/</a></p> <p>のヘッダにスライド画像のようなものを構築しようとしているマウスの速い動き
- 14. Netbeansの私は<a href="https://www.atlassian.com/software/jira" rel="nofollow noreferrer">Jira</a>(試用版)を設定しようとした構成
- 15. モーダル隠されたアクションは、私はこのような<a href="https://getbootstrap.com/javascript/#modals-events" rel="nofollow noreferrer">the Hidden event on modals</a>を使用したい
- 16. は、どのように私は、このページ<a href="https://www.lightningdesignsystem.com/icons/" rel="nofollow noreferrer">https://www.lightningdesignsystem.com/icons/</a> からファイルとしてSVGを保存したい
- 17. Mavenの、ドッカーはMavenと<a href="https://dmp.fabric8.io/" rel="nofollow noreferrer">docker-maven-plugin</a>でホストシステム
- 18. モジュールpomと親pomを接続しようとしています。相対パスを設定するにはどうすればよいですか?
- 19. SQLAlchemyの:これが追加された理由のハイブリッド値オブジェクトは、クエリのタプルは、しかし、私はハイブリッド値オブジェクトを使用して<a href="http://www.sqlalchemy.org/docs/orm/extensions/hybrid.html#hybrid-value-objects" rel="nofollow">custom comparators</a>を構築する上でのドキュメントの例に従うことをしようとしています
- 20. mavenは変更されたpomファイルを考慮しません
- 21. は、私は<a href="https://redom.js.org" rel="nofollow noreferrer">redom</a>ライブラリをインポートしようとしています
- 22. Mavenのシェード-プラグインは、私が<a href="https://github.com/gatling/gatling-maven-plugin-demo" rel="nofollow noreferrer">Gatling Maven Example</a>をダウンロードし、jarファイルが作成されます、以下のようにそれにMVNシェードプラグインを追加しようとしているファイルに
- 23. 、ここに私のMavenのPOMファイルどのようにアプリケーション
- 24. ビルヴァリデ:パッケージlibvala-0.12は、私が<a href="https://launchpad.net/valide" rel="nofollow">valide</a>(0.7.1)</p> <p>私は成功したのValaを構築しているの最新バージョンを構築しようとしています
- 25. 「オブジェクトのインスタンスに設定されていないオブジェクト参照」私はこのコードを使用してPHPからSOAP経由でこの<a href="http://www.neugroup.com/workarea/servercontrolws.asmx?op=LoadListSummary" rel="nofollow">web service</a>にアクセスしようとしてるPHP
- 26. はどのように設定することができ、<a href="http://dask.pydata.org/en/latest/scheduler-overview.html#configuring-the-schedulers" rel="nofollow noreferrer">Dask documentation</a>が示すように、あなたがDask.arrayの労働者の数を指定したいと仮定しDask.array
- 27. コマンドラインからpom pluginManagementで定義されたMavenプラグインの設定をオーバーライドします
- 28. パイソンはrandom.Random - <a href="https://docs.python.org/3.4/library/random.html#random.random" rel="nofollow">documentation</a>で説明したように0
- 29. は、どのように私は<a href="http://controlsjs.com/" rel="nofollow">Hello demo</a></p> <p>をしようとしていた
- 30. クッキーは、いったんsetcookieで設定しますが、私はこのように、<a href="http://www.formymobile.co.uk/test2100fascias.shtml" rel="nofollow">this page</a>にクッキーを設定しようとしています$ _COOKIE
それはしばらくしているが、GMavenのスポックの使用量は、いつも私が行く私のGroovyのものを得る助け - > http://code.google.com/p/spock/wiki/HelloSpockPom –