Twitter4j使わせてもらっています。
ありがとうございます。
標題の件なんですが、pom.xmlでソースコードのjarが
出力されないようになっていたので直してみました(添付参照)。
もしよければ取り込んでもらえると嬉しいです^^
--
=============================
Shinpei Ohtani
shinpei...@gmail.com
=============================
ご連絡ありがとうございます。
お返事遅くなってしまい申しわけありません。
maven に明るくなく、ant で jar の作成を行っていました
(汗
確認の上コミットさせていただきます。
ひとまず Jira に登録させていただきました。
http://yusuke.homeip.net/jira/browse/TFJ-22
Best regards,
Yusuke Yamamoto
> <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>twitter4j</groupId>
> <artifactId>twitter4j</artifactId>
> <packaging>jar</packaging>
> <version>1.0.3</version>
> <name>twitter4j</name>
> <url>http://yusuke.homeip.net/twitter4j/</url>
> <dependencies>
> <dependency>
> <groupId>junit</groupId>
> <artifactId>junit</artifactId>
> <version>3.8.1</version>
> <scope>compile</scope>
> </dependency>
> <dependency>
> <groupId>org.slf4j</groupId>
> <artifactId>nlog4j</artifactId>
> <version>1.2.25</version>
> <scope>compile</scope>
> </dependency>
> <dependency>
> <groupId>rome</groupId>
> <artifactId>rome</artifactId>
> <version>0.8</version>
> <scope>compile</scope>
> </dependency>
> </dependencies>
> <build>
> <sourceDirectory>${basedir}/src</sourceDirectory>
> <testSourceDirectory>${basedir}/test</testSourceDirectory>
> <resources>
> <resource>
> <directory>${basedir}/src</directory>
> <excludes>
> <exclude>**/*.java</exclude>
> </excludes>
> </resource>
> </resources>
> <testResources>
> <testResource>
> <directory>${basedir}/test</directory>
> <excludes>
> <exclude>**/*.java</exclude>
> </excludes>
> </testResource>
> </testResources>
> <defaultGoal>validate</defaultGoal>
> <plugins>
> <plugin>
> <artifactId>maven-source-plugin</artifactId>
> <executions>
> <execution>
> <goals>
> <goal>jar</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> </plugins>
> <extensions>
> <extension>
> <groupId>org.apache.maven.wagon</groupId>
> <artifactId>wagon-webdav</artifactId>
> <version>1.0-beta-2</version>
> </extension>
> </extensions>
> <pluginManagement>
> <plugins>
> <plugin>
> <artifactId>maven-compiler-plugin</artifactId>
> <configuration>
> <encoding>UTF-8</encoding>
> <source>1.5</source>
> <target>jsr14</target>
> </configuration>
> </plugin>
> <plugin>
> <artifactId>maven-source-plugin</artifactId>
> <executions>
> <execution>
> <goals>
> <goal>jar</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> <plugin>
> <artifactId>maven-deploy-plugin</artifactId>
> <configuration>
> <updateReleaseInfo>true</updateReleaseInfo>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> </build>
> </project>
> maven に明るくなく、ant で jar の作成を行っていました
> (汗
わかります、その気持ち(笑)
> 確認の上コミットさせていただきます。
> ひとまず Jira に登録させていただきました。
> http://yusuke.homeip.net/jira/browse/TFJ-22
ありがとうございます^^
08/04/11 に Yusuke Yamamoto<yus...@mac.com> さんは書きました: