|
4 | 4 | <groupId>org.scribe</groupId> |
5 | 5 | <artifactId>scribe</artifactId> |
6 | 6 | <packaging>jar</packaging> |
7 | | - <version>1.3.2-patched</version> |
| 7 | + <version>1.3.4-patched</version> |
8 | 8 | <name>Scribe OAuth Library</name> |
9 | 9 | <description>The best OAuth library out there</description> |
10 | 10 | <url>http://github.com/fernandezpablo85/scribe-java</url> |
|
22 | 22 | <email>fernandezpablo85@gmail.com</email> |
23 | 23 | <timezone>-3</timezone> |
24 | 24 | </developer> |
25 | | - <developer> |
26 | | - <id>diegossilveira</id> |
27 | | - <name>Diego Silveira</name> |
28 | | - <email>diegossilveira@gmail.com</email> |
29 | | - <timezone>-3</timezone> |
30 | | - </developer> |
31 | 25 | </developers> |
32 | 26 |
|
33 | 27 | <licenses> |
|
44 | 38 | </scm> |
45 | 39 |
|
46 | 40 | <dependencies> |
47 | | - <dependency> |
48 | | - <groupId>commons-codec</groupId> |
49 | | - <artifactId>commons-codec</artifactId> |
50 | | - <version>1.4</version> |
51 | | - </dependency> |
52 | | - |
53 | 41 | <dependency> |
54 | 42 | <groupId>junit</groupId> |
55 | 43 | <artifactId>junit</artifactId> |
56 | 44 | <version>4.8.1</version> |
57 | 45 | <scope>test</scope> |
58 | 46 | </dependency> |
59 | | - |
| 47 | + <dependency> |
| 48 | + <groupId>commons-codec</groupId> |
| 49 | + <artifactId>commons-codec</artifactId> |
| 50 | + <version>1.4</version> |
| 51 | + <scope>compile</scope> |
| 52 | + <optional>true</optional> |
| 53 | + </dependency> |
60 | 54 | </dependencies> |
61 | 55 | <build> |
62 | 56 | <plugins> |
63 | 57 | <plugin> |
64 | 58 | <artifactId>maven-compiler-plugin</artifactId> |
| 59 | + <version>3.0</version> |
65 | 60 | <configuration> |
66 | 61 | <source>1.5</source> |
67 | 62 | <target>1.5</target> |
68 | 63 | </configuration> |
69 | 64 | </plugin> |
70 | | - <!-- plugin> |
| 65 | + <plugin> |
71 | 66 | <groupId>org.apache.maven.plugins</groupId> |
72 | 67 | <artifactId>maven-gpg-plugin</artifactId> |
| 68 | + <version>1.4</version> |
73 | 69 | <executions> |
74 | 70 | <execution> |
75 | 71 | <id>sign-artifacts</id> |
|
79 | 75 | </goals> |
80 | 76 | </execution> |
81 | 77 | </executions> |
82 | | - </plugin--> |
| 78 | + </plugin> |
| 79 | + <plugin> |
| 80 | + <groupId>org.codehaus.mojo</groupId> |
| 81 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 82 | + <version>2.5.2</version> |
| 83 | + <executions> |
| 84 | + <execution> |
| 85 | + <id>failing-on-high</id> |
| 86 | + <phase>compile</phase> |
| 87 | + <goals> |
| 88 | + <goal>check</goal> |
| 89 | + </goals> |
| 90 | + <configuration> |
| 91 | + <threshold>Low</threshold> |
| 92 | + </configuration> |
| 93 | + </execution> |
| 94 | + </executions> |
| 95 | + </plugin> |
83 | 96 | </plugins> |
84 | 97 | </build> |
85 | 98 | </project> |
0 commit comments