チェンジセット 191
- コミット日時:
- 2008/04/03 20:35:00 (14 年前)
- ファイル:
-
- trunk/im-jssp-extention/.settings/org.eclipse.core.resources.prefs (更新) (1 diff)
- trunk/im-jssp-extention/pom.xml (更新) (3 diffs)
- trunk/im-jssp-extention/src/main/java/org/intra_mart/jssp/script/api/SOAPClientObject.java (追加)
- trunk/im-jssp-extention/src/test/js/sample (追加)
- trunk/im-jssp-extention/src/test/js/sample/web_service (追加)
- trunk/im-jssp-extention/src/test/js/sample/web_service/invoke_sample.js (追加)
- trunk/im-jssp-extention/src/test/resources/conf/jssp-config-temp.xml (更新) (2 diffs)
- trunk/im-jssp-extention/src/test/resources/logback.xml (追加)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/im-jssp-extention/.settings/org.eclipse.core.resources.prefs
r4 r191 1 # Mon Oct 16 19:09:08 JST 20061 #Thu Apr 03 18:59:13 JST 2008 2 2 eclipse.preferences.version=1 3 encoding//src/test/js/sample/web_service/invoke_sample.js=UTF-8 3 4 encoding/<project>=UTF-8 trunk/im-jssp-extention/pom.xml
r177 r191 32 32 </repositories> 33 33 34 <build> 35 <plugins> 36 <plugin> 37 <groupId>org.apache.maven.plugins</groupId> 38 <artifactId>maven-eclipse-plugin</artifactId> 39 <configuration> 40 <downloadSources>true</downloadSources> 41 <downloadJavadocs>true</downloadJavadocs> 42 <wtpversion>2.0</wtpversion> 43 </configuration> 44 </plugin> 45 </plugins> 46 </build> 47 34 48 <dependencies> 35 49 <dependency> … … 50 64 <version>0.1.2</version> 51 65 <scope>compile</scope> 52 </dependency> 66 </dependency> 67 <dependency> 68 <groupId>org.apache.axis2</groupId> 69 <artifactId>axis2-jaxws</artifactId> 70 <version>1.3</version> 71 <scope>runtime</scope> 72 </dependency> 73 <dependency> 74 <groupId>org.apache.axis2</groupId> 75 <artifactId>axis2-adb-codegen</artifactId> 76 <version>1.3</version> 77 <scope>provided</scope> 78 </dependency> 79 <dependency> 80 <groupId>org.apache.axis2</groupId> 81 <artifactId>axis2-codegen</artifactId> 82 <version>1.3</version> 83 <scope>provided</scope> 84 </dependency> 85 <dependency> 86 <groupId>org.apache.axis2</groupId> 87 <artifactId>axis2-kernel</artifactId> 88 <version>1.3</version> 89 <scope>provided</scope> 90 </dependency> 91 <dependency> 92 <groupId>javassist</groupId> 93 <artifactId>javassist</artifactId> 94 <version>3.0</version> 95 <scope>provided</scope> 96 </dependency> 53 97 <dependency> 54 98 <groupId>rhino</groupId> … … 64 108 </dependency> 65 109 <dependency> 110 <groupId>ch.qos.logback</groupId> 111 <artifactId>logback-core</artifactId> 112 <version>0.9.8</version> 113 <scope>runtime</scope> 114 </dependency> 115 <dependency> 116 <groupId>ch.qos.logback</groupId> 117 <artifactId>logback-classic</artifactId> 118 <version>0.9.8</version> 119 <scope>runtime</scope> 120 </dependency> 121 <dependency> 122 <groupId>org.slf4j</groupId> 123 <artifactId>jcl104-over-slf4j</artifactId> 124 <version>1.4.3</version> 125 <scope>runtime</scope> 126 </dependency> 127 <dependency> 128 <groupId>org.slf4j</groupId> 129 <artifactId>log4j-over-slf4j</artifactId> 130 <version>1.4.3</version> 131 <scope>runtime</scope> 132 </dependency> 133 <dependency> 134 <groupId>org.slf4j</groupId> 135 <artifactId>slf4j-api</artifactId> 136 <version>1.4.3</version> 137 <scope>runtime</scope> 138 </dependency> 139 <dependency> 66 140 <groupId>junit</groupId> 67 141 <artifactId>junit</artifactId> trunk/im-jssp-extention/src/test/resources/conf/jssp-config-temp.xml
r189 r191 17 17 18 18 <api-class name="org.intra_mart.jssp.script.api.SOAPClientObject"> 19 <mode>Once</mode> 19 20 <work-dir>target/work/jssp/_SOAPClient</work-dir> 20 21 </api-class> … … 41 42 <application> 42 43 <initializer-script>setup</initializer-script> 44 <initializer-script>sample/web_service/invoke_sample</initializer-script> 43 45 </application> 44 46 </initializer>