Skip to content

Commit

Permalink
Release 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-mcgoldrick committed Oct 18, 2024
1 parent b9bbafe commit 0c28def
Show file tree
Hide file tree
Showing 56 changed files with 78 additions and 302 deletions.
2 changes: 1 addition & 1 deletion agent/agent_common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>agent-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>agent-standalone</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_standalone_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>agent-standalone-pkg</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_startup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>agent-startup</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_startup_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>agent-startup-pkg</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/apiharness/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>agent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/apiharness_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>apiharness</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/http_client_3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>http_client_apache_3</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/http_client_4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>http_client_apache_4</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/http_client_jdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>http_client_jdk</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>agent-parent</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions all-in-one.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mkdir $INSTALL_DIR/tomcat/db 2>/dev/null
mkdir $INSTALL_DIR/tomcat/jars 2>/dev/null

echo "downloading and extracting agent-standalone..."
wget -O /tmp/agent-standalone-pkg.zip https://github.com/intuit/Tank/releases/download/4.0.0/agent-standalone-pkg.zip 2>/dev/null
wget -O /tmp/agent-standalone-pkg.zip https://github.com/intuit/Tank/releases/download/4.1.0/agent-standalone-pkg.zip 2>/dev/null
unzip -q -d $INSTALL_DIR /tmp/agent-standalone-pkg 2>/dev/null
rm -f /tmp/agent-standalone-pkg 2>/dev/null

Expand All @@ -26,7 +26,7 @@ wget -O /$INSTALL_DIR/tomcat/settings.xml https://github.com/intuit/Tank/blob/ma

echo "downloading and installing tank war file..."
rm -fr $INSTALL_DIR/tomcat/webapps/docs $INSTALL_DIR/tomcat/webapps/examples $INSTALL_DIR/tomcat/webapps/ROOT 2>/dev/null
wget -O $INSTALL_DIR/tomcat/webapps/ROOT.war https://github.com/intuit/Tank/releases/download/4.0.0/tank.war 2>/dev/null
wget -O $INSTALL_DIR/tomcat/webapps/ROOT.war https://github.com/intuit/Tank/releases/download/4.1.0/tank.war 2>/dev/null

echo "Creating context file at $INSTALL_DIR/start.sh ..."
cat << EOF > $INSTALL_DIR/tomcat/conf/context.xml
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion data_access/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>


Expand Down
2 changes: 1 addition & 1 deletion data_model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>data-model</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/doc_xslt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>pressgang-xslt-ns</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/jdocbook_style/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>tank-common-jdocbook-style</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>tank-parent-doc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/tank_installation_guide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>tank-installation-guide</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/tank_user_guide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>tank-user-guide</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion harness_data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>harness-data</artifactId>
Expand Down
44 changes: 22 additions & 22 deletions jacoco-report-aggregator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>jacoco-report-aggregator</artifactId>
Expand All @@ -19,132 +19,132 @@
<groupId>com.intuit.tank</groupId>
<artifactId>agent-common</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-standalone</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-startup</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>agent</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>http_client_apache_3</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>http_client_apache_4</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>http_client_jdk</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>api</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>harness-data</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>

<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-script-processor</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>document-util</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>lucene-indexer</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>script-search</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-common</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-vm-manager</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>

<!-- tools -->
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-debugger</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>script-engine</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>script-filter</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>


<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>data-access</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>data-model</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>com.intuit.tank</groupId>
<artifactId>web-support</artifactId>
<scope>compile</scope>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion mail/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>tank-mail</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>

<packaging>pom</packaging>
<name>Tank Parent</name>
Expand Down Expand Up @@ -913,7 +913,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>test-support</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down
2 changes: 1 addition & 1 deletion proxy-parent/WebConversation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>proxy-parent</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0</version>
</parent>

<artifactId>WebConversation</artifactId>
Expand Down
Loading

0 comments on commit 0c28def

Please sign in to comment.