Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.html?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.html (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.html Wed Jun 19 23:44:41 2013 @@ -0,0 +1,64 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +#if($TabName == $ResourceBundle.getString('JiraRepositoryConnector.Server')) + +<table class="displaytable"> + <tr> + <td class="separator" colspan="2"> + <hr /> + </td> + </tr> + <tr> + <td class="description"> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.JiraUrl')) + </nobr> + </td> + <td class="value"> + <input type="text" id="jiraurl" name="jiraurl" value="$Encoder.attributeEscape($JIRAURL)" /> + </td> + </tr> + <tr> + <td class="description"> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.ClientID')) + </nobr> + </td> + <td class="value"> + <input type="text" id="clientid" name="clientid" value="$Encoder.attributeEscape($CLIENTID)" /> + </td> + </tr> + <tr> + <td class="description"> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.ClientSecret')) + </nobr> + </td> + <td class="value"> + <input type="password" id="clientsecret" name="clientsecret" value="$Encoder.attributeEscape($CLIENTSECRET)" /> + </td> + </tr> +</table> + +#else + +<input type="hidden" name="clientid" value="$Encoder.attributeEscape($CLIENTID)" /> +<input type="hidden" name="clientsecret" value="$Encoder.attributeEscape($CLIENTSECRET)" /> +<input type="hidden" name="jiraurl" value="$Encoder.attributeEscape($JIRAURL)" /> + +#end
Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.js?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.js (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editConfiguration_jira_server.js Wed Jun 19 23:44:41 2013 @@ -0,0 +1,53 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<script type="text/javascript"> +<!-- +function checkConfig() +{ + return true; +} + +function checkConfigForSave() +{ + + if (editconnection.jiraurl.value == "") + { + alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.JiraUrlMustNotBeNull'))"); + SelectTab("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.Server'))"); + editconnection.jsonauth.focus(); + return false; + } + /* -- allow anonymous access + if (editconnection.clientid.value == "") + { + alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.ClientMustNotBeNull'))"); + SelectTab("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.Server'))"); + editconnection.key.focus(); + return false; + } + if (editconnection.clientsecret.value == "") + { + alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.ClientSecretMustNotBeNull'))"); + SelectTab("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.Server'))"); + editconnection.secret.focus(); + return false; + }*/ + return true; +} +//--> +</script> Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jira.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jira.js?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jira.js (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jira.js Wed Jun 19 23:44:41 2013 @@ -0,0 +1,54 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<script type="text/javascript"> +<!-- +function checkSpecificationForSave() +{ + if (editjob.jiraquery.value == "") { + alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.SeedQueryCannotBeNull'))"); + SelectTab("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.JiraQuery'))"); + editjob.jiraquery.focus(); + return false; + } + return true; +} + +function SpecOp(n, opValue, anchorvalue) +{ + eval("editjob."+n+".value = \""+opValue+"\""); + postFormSetAnchor(anchorvalue); +} + +function SpecDeleteToken(i) +{ + SpecOp("accessop_"+i,"Delete","token_"+i); +} + +function SpecAddToken(i) +{ + if (editjob.spectoken.value == "") + { + alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraRepositoryConnector.TypeInAnAccessToken'))"); + editjob.spectoken.focus(); + return; + } + SpecOp("accessop","Add","token_"+i); +} + +//--> +</script> Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraQuery.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraQuery.html?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraQuery.html (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraQuery.html Wed Jun 19 23:44:41 2013 @@ -0,0 +1,40 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +#if($TabName == $ResourceBundle.getString('JiraRepositoryConnector.JiraQuery')) + +<table class="displaytable"> + <tr><td class="separator" colspan="2"><hr/></td></tr> + <tr> + <td class="description"> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.JiraQueryColon')) + </nobr> + </td> + <td class="value"> + <nobr> + <input type="text" size="120" name="jiraquery" value="$Encoder.attributeEscape($JIRAQUERY)" /> + </nobr> + </td> + </tr> +</table> + +#else + +<input type="hidden" name="jiraquery" value="$Encoder.attributeEscape($JIRAQUERY)" /> + +#end Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraSecurity.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraSecurity.html?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraSecurity.html (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/editSpecification_jiraSecurity.html Wed Jun 19 23:44:41 2013 @@ -0,0 +1,73 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +#if($TabName == $ResourceBundle.getString('JiraRepositoryConnector.Security')) + +<table class="displaytable"> + <tr><td class="separator" colspan="2"><hr/></td></tr> + + #set($atcounter = 0) + #foreach($atoken in $ACCESSTOKENS) + + <tr> + <td class="description"> + <input type="hidden" name="accessop_$atcounter" value=""/> + <input type="hidden" name="spectoken_$atcounter" value="$Encoder.attributeEscape($atoken.get('TOKEN'))"/> + <a name="token_$atcounter"> + <input type="button" value="$Encoder.attributeEscape($ResourceBundle.getString('JiraRepositoryConnector.Delete'))" onClick='Javascript:SpecDeleteToken($atcounter)' alt="$Encoder.attributeEscape($ResourceBundle.getString('JiraRepositoryConnector.DeleteToken'))$atcounter"/> + </a> + </td> + <td class="value">$Encoder.bodyEscape($atoken.get('TOKEN'))</td> + </tr> + + #set($atcounter = $atcounter + 1) + #end + + #set($nexttoken = $atcounter + 1) + + #if($atcounter == 0) + <tr> + <td class="message" colspan="2">$Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.NoAccessTokensPresent'))</td> + </tr> + #end + + <tr><td class="lightseparator" colspan="2"><hr/></td></tr> + + <tr> + <td class="description"> + <input type="hidden" name="tokencount" value="$atcounter"/> + <input type="hidden" name="accessop" value=""/> + <a name="token_$atcounter"> + <input type="button" value="$Encoder.attributeEscape($ResourceBundle.getString('JiraRepositoryConnector.Add'))" onClick='Javascript:SpecAddToken($nexttoken)' alt="$Encoder.attributeEscape($ResourceBundle.getString('JiraRepositoryConnector.AddAccessToken'))"/> + </a> + </td> + <td class="value"> + <input type="text" size="30" name="spectoken" value=""/> + </td> + </tr> +</table> + +#else + + #set($atcounter = 0) + #foreach($atoken in $ACCESSTOKENS) +<input type="hidden" name="spectoken_$atcounter" value="$Encoder.attributeEscape($atoken.get('TOKEN'))"/> + #set($atcounter = $atcounter + 1) + #end +<input type="hidden" name="tokencount" value="$atcounter"/> + +#end Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewConfiguration_jira.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewConfiguration_jira.html?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewConfiguration_jira.html (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewConfiguration_jira.html Wed Jun 19 23:44:41 2013 @@ -0,0 +1,44 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<table class="displaytable"> + <tr> + <td class="description"> + <nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.ClientIDColon'))</nobr> + </td> + <td class="value"> + <nobr>$Encoder.bodyEscape($CLIENTID)</nobr> + </td> + </tr> + <tr> + <td class="description"> + <nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.ClientSecretColon'))</nobr> + </td> + <td class="value"> + <nobr>********</nobr> + </td> + </tr> + <tr> + <td class="description"> + <nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.JiraUrlColon'))</nobr> + </td> + <td class="value"> + <nobr>$Encoder.bodyEscape($JIRAURL)</nobr> + </td> + </tr> +</table> + Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewSpecification_jira.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewSpecification_jira.html?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewSpecification_jira.html (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/jira/viewSpecification_jira.html Wed Jun 19 23:44:41 2013 @@ -0,0 +1,47 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<table class="displaytable"> + <tr> + <td class="description"> + <nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.JiraQueryColon'))</nobr> + </td> + <td class="value"> + <nobr>$Encoder.bodyEscape($JIRAQUERY)</nobr> + </td> + </tr> + <tr><td class="separator" colspan="2"><hr/></td></tr> + <tr> +#if($ACCESSTOKENS.size() == 0) + <td class="message" colspan="2"> + $Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.NoAccessTokensPresent')) + </td> +#else + <td class="description"> + <nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraRepositoryConnector.AccessTokensColon'))</nobr> + </td> + <td class="value"> + #set($atcounter = 0) + #foreach($atoken in $ACCESSTOKENS) + <nobr>$Encoder.bodyEscape($atoken.get('TOKEN'))</nobr><br/> + #set($atcounter = $atcounter + 1) + #end + </td> +#end + </tr> + +</table> Added: manifoldcf/branches/CONNECTORS-723/connectors/jira/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/jira/pom.xml?rev=1494807&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/jira/pom.xml (added) +++ manifoldcf/branches/CONNECTORS-723/connectors/jira/pom.xml Wed Jun 19 23:44:41 2013 @@ -0,0 +1,161 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<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/xsd/maven-4.0.0.xsd"> + + <parent> + <groupId>org.apache.manifoldcf</groupId> + <artifactId>mcf-connectors</artifactId> + <version>1.3-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <packaging>jar</packaging> + + <developers> + <developer> + <name>Andrew Janowczyk</name> + <organization>Searchbox</organization> + <organizationUrl>http://www.searchbox.com</organizationUrl> + <url>http://www.searchbox.com</url> + </developer> + </developers> + + <artifactId>mcf-jira-connector</artifactId> + <name>ManifoldCF - Connectors - Jira</name> + + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.http.version>1.14.1-beta</project.http.version> + <project.oauth.version>1.14.1-beta</project.oauth.version> + </properties> + + <build> + <sourceDirectory>${basedir}/connector/src/main/java</sourceDirectory> + <testSourceDirectory>${basedir}/connector/src/test/java</testSourceDirectory> + <resources> + <resource> + <directory>${basedir}/connector/src/main/resources</directory> + <includes> + <include>**/*.html</include> + <include>**/*.js</include> + </includes> + </resource> + <resource> + <directory>${basedir}/connector/src/main/native2ascii</directory> + <includes> + <include>**/*.properties</include> + </includes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>native2ascii-maven-plugin</artifactId> + <version>1.0-beta-1</version> + <configuration> + <workDir>target/classes</workDir> + </configuration> + <executions> + <execution> + <id>native2ascii-utf8</id> + <goals> + <goal>native2ascii</goal> + </goals> + <configuration> + <encoding>UTF8</encoding> + <includes> + <include>**/*.properties</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/*Postgresql*.java</exclude> + <exclude>**/*MySQL*.java</exclude> + </excludes> + <forkMode>always</forkMode> + <workingDirectory>target/test-output</workingDirectory> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>mcf-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>mcf-pull-agent</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>mcf-agents</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>mcf-ui-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>${commons-lang.version}</version> + <type>jar</type> + </dependency> + + + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.16</version> + <scope>provided</scope> + <type>jar</type> + </dependency> + <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + <version>1.1</version> + </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.8</version> + </dependency> + </dependencies> +</project> Modified: manifoldcf/branches/CONNECTORS-723/connectors/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-723/connectors/pom.xml?rev=1494807&r1=1494806&r2=1494807&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-723/connectors/pom.xml (original) +++ manifoldcf/branches/CONNECTORS-723/connectors/pom.xml Wed Jun 19 23:44:41 2013 @@ -52,6 +52,7 @@ <module>elasticsearch</module> <module>dropbox</module> <module>googledrive</module> + <module>jira</module> </modules> </project>
