|
4 | 4 |
|
5 | 5 | <groupId>com.twitter</groupId>
|
6 | 6 | <artifactId>twitter-text</artifactId>
|
7 |
| - <version>1.9.10-SNAPSHOT</version> |
| 7 | + <version>1.10.0</version> |
8 | 8 |
|
9 | 9 | <packaging>jar</packaging>
|
10 | 10 | <name>twitter-text</name>
|
|
36 | 36 | <outputDirectory>build</outputDirectory>
|
37 | 37 | <sourceDirectory>src</sourceDirectory>
|
38 | 38 | <testSourceDirectory>tests</testSourceDirectory>
|
39 |
| - <resources> |
40 |
| - <resource> |
41 |
| - <directory>test-data/twitter-text-conformance</directory> |
42 |
| - <includes> |
43 |
| - <include>tld_lib.yml</include> |
44 |
| - </includes> |
45 |
| - </resource> |
46 |
| - </resources> |
47 | 39 | <pluginManagement>
|
48 | 40 | <plugins>
|
49 | 41 | <plugin>
|
50 | 42 | <groupId>org.apache.maven.plugins</groupId>
|
51 | 43 | <artifactId>maven-release-plugin</artifactId>
|
52 | 44 | <version>2.1</version>
|
53 | 45 | <configuration>
|
54 |
| - <mavenExecutorId>forked-path</mavenExecutorId> |
55 |
| - <useReleaseProfile>false</useReleaseProfile> |
56 |
| - <arguments>-Psonatype-oss-release</arguments> |
| 46 | + <mavenExecutorId>forked-path</mavenExecutorId> |
57 | 47 | </configuration>
|
58 | 48 | </plugin>
|
59 | 49 | </plugins>
|
|
99 | 89 | <aggregate>true</aggregate>
|
100 | 90 | </configuration>
|
101 | 91 | </plugin>
|
102 |
| - <plugin> |
103 |
| - <groupId>org.eluder.coveralls</groupId> |
104 |
| - <artifactId>coveralls-maven-plugin</artifactId> |
105 |
| - <version>2.2.0</version> |
106 |
| - </plugin> |
107 | 92 | <plugin>
|
108 | 93 | <groupId>org.codehaus.mojo</groupId>
|
109 | 94 | <artifactId>exec-maven-plugin</artifactId>
|
110 | 95 | <version>1.1</version>
|
111 | 96 | <executions>
|
112 | 97 | <execution>
|
113 | 98 | <id>submodule-update</id>
|
114 |
| - <phase>compile</phase> |
| 99 | + <phase>generate-resources</phase> |
115 | 100 | <goals>
|
116 | 101 | <goal>exec</goal>
|
117 | 102 | </goals>
|
|
127 | 112 | </arguments>
|
128 | 113 | </configuration>
|
129 | 114 | </plugin>
|
| 115 | + <plugin> |
| 116 | + <artifactId>maven-resources-plugin</artifactId> |
| 117 | + <version>2.6</version> |
| 118 | + <executions> |
| 119 | + <execution> |
| 120 | + <id>copy-resources</id> |
| 121 | + <phase>generate-resources</phase> |
| 122 | + <goals> |
| 123 | + <goal>copy-resources</goal> |
| 124 | + </goals> |
| 125 | + <configuration> |
| 126 | + <outputDirectory>${project.build.outputDirectory}</outputDirectory> |
| 127 | + <resources> |
| 128 | + <resource> |
| 129 | + <directory>test-data/twitter-text-conformance</directory> |
| 130 | + <includes> |
| 131 | + <include>tld_lib.yml</include> |
| 132 | + </includes> |
| 133 | + </resource> |
| 134 | + </resources> |
| 135 | + </configuration> |
| 136 | + </execution> |
| 137 | + </executions> |
| 138 | + </plugin> |
| 139 | + <plugin> |
| 140 | + <groupId>org.eluder.coveralls</groupId> |
| 141 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 142 | + <version>2.2.0</version> |
| 143 | + </plugin> |
130 | 144 | </plugins>
|
131 | 145 | </build>
|
132 | 146 |
|
|
166 | 180 |
|
167 | 181 | <profiles>
|
168 | 182 | <profile>
|
169 |
| - <id>sonatype-oss-release</id> |
| 183 | + <id>release-profile</id> |
170 | 184 | <build>
|
171 |
| - <resources> |
172 |
| - <resource> |
173 |
| - <directory>test-data/twitter-text-conformance</directory> |
174 |
| - <includes> |
175 |
| - <include>tld_lib.yml</include> |
176 |
| - </includes> |
177 |
| - </resource> |
178 |
| - </resources> |
179 | 185 | <plugins>
|
180 | 186 | <plugin>
|
181 | 187 | <groupId>org.apache.maven.plugins</groupId>
|
|
0 commit comments