]> git.argeo.org Git - gpl/argeo-tp.git/blob - scripting.xml
c1ca80b1e36de0daff22336bf6ffbff3045317ba
[gpl/argeo-tp.git] / scripting.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns:p="http://www.springframework.org/schema/p"
5 xmlns:util="http://www.springframework.org/schema/util"
6 xmlns:flow="http://www.argeo.org/schema/slc-flow"
7 xsi:schemaLocation="
8 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
9 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd
10 http://www.argeo.org/schema/slc-flow http://www.argeo.org/schema/slc-flow-1.2.xsd">
11
12 <bean id="black.ninia.jep" p:sourceCoords="black.ninia:jep:3.9.0"
13 parent="template.mavenWrapper">
14 <property name="license">
15 <util:constant
16 static-field="org.argeo.slc.repo.FreeLicense.APACHE" />
17 </property>
18 <property name="groupId" value="org.argeo.tp.scripting" />
19 </bean>
20
21 <bean id="org.jython"
22 p:sourceCoords="org.python:jython-standalone:2.7.1"
23 parent="template.mavenWrapper">
24 <!-- <property name="license"> -->
25 <!-- <util:constant -->
26 <!-- static-field="org.argeo.slc.repo.FreeLicense.PYTHON" /> -->
27 <!-- </property> -->
28 <property name="groupId" value="org.argeo.tp.scripting" />
29 <property name="bndProperties">
30 <props merge="true">
31 <prop key="Export-Package">
32 org.python.core.*,
33 org.python.modules.*,
34 org.python.util,
35 org.python,
36 com.xhaus.modjy,
37 com.ziclix.python.sql,
38 Lib.*
39 </prop>
40 <prop key="Import-Package">
41 *;resolution:=optional
42 </prop>
43 <prop key="Private-Package">*</prop>
44 <prop key="Main-Class">org.python.util.jython</prop>
45 </props>
46 </property>
47 </bean>
48 </beans>