File tree 6 files changed +50
-0
lines changed
performance/gatling_tests/src/gatling/resources/data
6 files changed +50
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ tests/dat/actions/python2_virtualenv.zip
81
81
tests /dat /actions /python_virtualenv /virtualenv
82
82
tests /dat /actions /.built
83
83
tests /dat /actions /unicode.tests /java-8.bin
84
+ tests /performance /gatling_tests /src /gatling /resources /data /javaAction.jar
84
85
85
86
# dev
86
87
intellij-run-config.groovy
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ jv=$(java -version 2>&1 | head -1 | awk -F'"' '{print $2}')
28
28
if [[ $jv == 1.8.* ]]; then
29
29
echo " java version is $jv (ok)"
30
30
(cd unicode.tests/src/java/unicode && ../../../../../../../gradlew build && cp build/libs/unicode-1.0.jar ../../../java-8.bin)
31
+ (cd ../../performance/gatling_tests/src/gatling/resources/data/src/java && ../../../../../../../../../gradlew build && cp build/libs/gatling-1.0.jar ../../javaAction.jar)
31
32
else
32
33
echo " java version is $jv (not ok)"
33
34
echo " skipping java actions"
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one or more
3
+ * contributor license agreements. See the NOTICE file distributed with
4
+ * this work for additional information regarding copyright ownership.
5
+ * The ASF licenses this file to You under the Apache License, Version 2.0
6
+ * (the "License"); you may not use this file except in compliance with
7
+ * the License. You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ plugins {
19
+ id ' java'
20
+ }
21
+
22
+ version = ' 1.0'
23
+
24
+ repositories {
25
+ mavenCentral()
26
+ }
27
+
28
+ dependencies {
29
+ compile " com.google.code.gson:gson:2.6.2"
30
+ }
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one or more
3
+ * contributor license agreements. See the NOTICE file distributed with
4
+ * this work for additional information regarding copyright ownership.
5
+ * The ASF licenses this file to You under the Apache License, Version 2.0
6
+ * (the "License"); you may not use this file except in compliance with
7
+ * the License. You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ rootProject. name = ' gatling'
File renamed without changes.
You can’t perform that action at this time.
0 commit comments