| 1 |
df4ee0a0
|
みぞ@CrazyBeatCoder
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 2 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 3 |
|
|
<modelVersion>4.0.0</modelVersion>
|
| 4 |
|
|
|
| 5 |
|
|
<groupId>com.mizo0203</groupId>
|
| 6 |
493ff79f
|
みぞ@CrazyBeatCoder
|
<artifactId>TimelineTalker</artifactId>
|
| 7 |
df4ee0a0
|
みぞ@CrazyBeatCoder
|
<version>0.0.1-SNAPSHOT</version>
|
| 8 |
|
|
<packaging>jar</packaging>
|
| 9 |
|
|
|
| 10 |
|
|
<properties>
|
| 11 |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 12 |
|
|
</properties>
|
| 13 |
|
|
|
| 14 |
|
|
<build>
|
| 15 |
|
|
<sourceDirectory>src</sourceDirectory>
|
| 16 |
|
|
<outputDirectory>target/classes</outputDirectory>
|
| 17 |
|
|
<resources>
|
| 18 |
|
|
<resource>
|
| 19 |
|
|
<directory>src</directory>
|
| 20 |
|
|
<excludes>
|
| 21 |
|
|
<exclude>**/*.java</exclude>
|
| 22 |
|
|
</excludes>
|
| 23 |
|
|
</resource>
|
| 24 |
|
|
</resources>
|
| 25 |
|
|
<plugins>
|
| 26 |
|
|
<plugin>
|
| 27 |
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
| 28 |
|
|
<version>3.1</version>
|
| 29 |
|
|
<configuration>
|
| 30 |
|
|
<source>1.7</source>
|
| 31 |
|
|
<target>1.7</target>
|
| 32 |
|
|
</configuration>
|
| 33 |
|
|
</plugin>
|
| 34 |
|
|
</plugins>
|
| 35 |
|
|
</build>
|
| 36 |
|
|
|
| 37 |
|
|
<dependencies>
|
| 38 |
|
|
<dependency>
|
| 39 |
|
|
<groupId>org.twitter4j</groupId>
|
| 40 |
|
|
<artifactId>twitter4j-core</artifactId>
|
| 41 |
|
|
<version>[4.0,)</version>
|
| 42 |
|
|
</dependency>
|
| 43 |
|
|
<dependency>
|
| 44 |
|
|
<groupId>org.twitter4j</groupId>
|
| 45 |
|
|
<artifactId>twitter4j-stream</artifactId>
|
| 46 |
|
|
<version>[4.0,)</version>
|
| 47 |
|
|
</dependency>
|
| 48 |
|
|
</dependencies>
|
| 49 |
|
|
</project>
|