Skip to content

Commit

Permalink
Build nightly site
Browse files Browse the repository at this point in the history
  • Loading branch information
twschiller committed Oct 21, 2013
1 parent eb667d8 commit df11bff
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 4 deletions.
2 changes: 1 addition & 1 deletion edu.washington.cs.cupid.core.feature/feature.xml
Expand Up @@ -2,7 +2,7 @@
<feature
id="edu.washington.cs.cupid.core"
label="Cupid for Eclipse"
version="1.3.3.v20131014-2200"
version="1.3.3.v20131021-1230"
provider-name="University of Washington PLSE"
plugin="edu.washington.cs.cupid"
license-feature="edu.washington.cs.cupid.license"
Expand Down
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<jdoconfig xmlns="http://java.sun.com/xml/ns/jdo/jdoconfig"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://java.sun.com/xml/ns/jdo/jdoconfig">

<persistence-manager-factory name="transactions-optional">
<property name="javax.jdo.PersistenceManagerFactoryClass"
value="org.datanucleus.api.jdo.JDOPersistenceManagerFactory"/>
<property name="javax.jdo.option.ConnectionURL" value="appengine"/>
<property name="javax.jdo.option.NontransactionalRead" value="true"/>
<property name="javax.jdo.option.NontransactionalWrite" value="true"/>
<property name="javax.jdo.option.RetainValues" value="true"/>
<property name="datanucleus.appengine.autoCreateDatastoreTxns" value="true"/>
<property name="datanucleus.appengine.singletonPMFForName" value="true"/>
</persistence-manager-factory>
</jdoconfig>
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" ?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">

<persistence-unit name="transactions-optional">
<provider>org.datanucleus.api.jpa.PersistenceProviderImpl</provider>
<class>edu.washington.cs.cupid.usage.server.data.CupidEvent</class>
<class>edu.washington.cs.cupid.usage.server.data.CupidSession</class>
<class>edu.washington.cs.cupid.usage.server.data.CupidUser</class>
<class>edu.washington.cs.cupid.usage.server.data.SystemData</class>

<exclude-unlisted-classes>true</exclude-unlisted-classes>

<properties>
<property name="datanucleus.NontransactionalRead" value="true"/>
<property name="datanucleus.NontransactionalWrite" value="true"/>
<property name="datanucleus.ConnectionURL" value="appengine"/>
<property name="datanucleus.singletonEMFForName" value="true"/>
</properties>
</persistence-unit>

</persistence>
2 changes: 1 addition & 1 deletion edu.washington.cs.cupid.wizards/META-INF/MANIFEST.MF
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Cupid Pipeline Wizards
Bundle-SymbolicName: edu.washington.cs.cupid.wizards;singleton:=true
Bundle-Version: 1.3.3.v20131014-2200
Bundle-Version: 1.3.3.v20131021-1230
Bundle-Activator: edu.washington.cs.cupid.wizards.internal.Activator
Bundle-Vendor: University of Washington PLSE
Require-Bundle: org.eclipse.ui,
Expand Down
2 changes: 1 addition & 1 deletion edu.washington.cs.cupid/META-INF/MANIFEST.MF
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Cupid
Bundle-SymbolicName: edu.washington.cs.cupid;singleton:=true
Bundle-Version: 1.3.3.v20131014-2200
Bundle-Version: 1.3.3.v20131021-1230
Bundle-Activator: edu.washington.cs.cupid.internal.CupidActivator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Expand Down
Binary file modified snapshots/nightly/artifacts.jar
Binary file not shown.
Binary file modified snapshots/nightly/content.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion snapshots/nightly/site.xml
Expand Up @@ -27,7 +27,7 @@
<feature url="features/edu.washington.cs.cupid.plugins_1.3.4.v20131014-1100.jar" id="edu.washington.cs.cupid.plugins" version="1.3.4.v20131014-1100">
<category name="edu.washington.cs.cupid"/>
</feature>
<feature url="features/edu.washington.cs.cupid.core_1.3.3.v20131014-2200.jar" id="edu.washington.cs.cupid.core" version="1.3.3.v20131014-2200">
<feature url="features/edu.washington.cs.cupid.core_1.3.3.v20131021-1230.jar" id="edu.washington.cs.cupid.core" version="1.3.3.v20131021-1230">
<category name="edu.washington.cs.cupid"/>
</feature>
<category-def name="edu.washington.cs.cupid" label="Cupid"/>
Expand Down

0 comments on commit df11bff

Please sign in to comment.