Skip to content

Commit

Permalink
databinder-components as separate module
Browse files Browse the repository at this point in the history
git-svn-id: svn://databinder.net/databinder/trunk@1420 c322e9cc-cc08-0410-988e-c197163ad9eb
  • Loading branch information
Nathan Hamblen committed Jun 29, 2007
1 parent eeede4c commit 68c69d3
Show file tree
Hide file tree
Showing 44 changed files with 56 additions and 6 deletions.
17 changes: 17 additions & 0 deletions databinder-components/pom.slip
@@ -0,0 +1,17 @@
"""<?xml version="1.0" encoding="UTF-8" ?>"""
project(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance",xmlns="http://maven.apache.org/POM/4.0.0",xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"):

modelVersion(): "4.0.0"
artifactId: "databinder-components"
name: "Databinder components"
parent:
groupId: "net.databinder"
artifactId: "databinder-parent"
version: "1.1-SNAPSHOT"

dependencies:
dependency:
groupId: "${pom.groupId}"
version: "${pom.version}"
artifactId: "databinder-models"

18 changes: 18 additions & 0 deletions databinder-components/pom.xml
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" ?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>databinder-components</artifactId>
<name>Databinder components</name>
<parent>
<groupId>net.databinder</groupId>
<artifactId>databinder-parent</artifactId>
<version>1.1-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<version>${pom.version}</version>
<artifactId>databinder-models</artifactId>
</dependency>
</dependencies>
</project>
Expand Up @@ -25,7 +25,7 @@
import org.apache.wicket.model.IModel;

/**
* TextField that can be told to focus itself on the next request. Works in cojunction with
* TextField that can be told to focus itself on the next request. Works in conjunction with
* the onload handler.
*/
public class FocusableTextField extends TextField {
Expand Down
2 changes: 1 addition & 1 deletion databinder-draw/pom.slip
Expand Up @@ -15,7 +15,7 @@ project(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance",xmlns="http://mave
dependency:
groupId: "${pom.groupId}"
version: "${pom.version}"
artifactId: "databinder"
artifactId: "databinder-components"

dependency:
groupId: "org.apache.batik"
Expand Down
2 changes: 1 addition & 1 deletion databinder-models/pom.slip
Expand Up @@ -15,7 +15,7 @@ project(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance",xmlns="http://mave
dependency:
groupId: "org.hibernate"
artifactId: "hibernate"
version: "3.2.3.ga"
version: "3.2.4.sp1"

dependency:
groupId: "javax.persistence"
Expand Down
2 changes: 1 addition & 1 deletion databinder-models/pom.xml
Expand Up @@ -13,7 +13,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.3.ga</version>
<version>3.2.4.sp1</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Expand Down
7 changes: 6 additions & 1 deletion databinder/pom.slip
Expand Up @@ -13,7 +13,7 @@ project(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance",xmlns="http://mave
dependency:
groupId: "${pom.groupId}"
version: "${pom.version}"
artifactId: "databinder-models"
artifactId: "databinder-components"

dependency:
groupId: "javax.servlet"
Expand All @@ -25,6 +25,11 @@ project(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance",xmlns="http://mave
artifactId: "hibernate-annotations"
version: "3.2.1.ga"

dependency:
groupId: "org.hibernate"
artifactId: "hibernate"
version: "3.2.4.sp1"

dependency:
groupId: "org.apache.wicket"
artifactId: "wicket-auth-roles"
Expand Down
7 changes: 6 additions & 1 deletion databinder/pom.xml
Expand Up @@ -12,7 +12,7 @@
<dependency>
<groupId>${pom.groupId}</groupId>
<version>${pom.version}</version>
<artifactId>databinder-models</artifactId>
<artifactId>databinder-components</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand All @@ -24,6 +24,11 @@
<artifactId>hibernate-annotations</artifactId>
<version>3.2.1.ga</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.4.sp1</version>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-auth-roles</artifactId>
Expand Down
Expand Up @@ -28,6 +28,7 @@
/**
* Similar to the Link created by ListView.moveDownLink(), but can be overridden
* for saving changes to persistent storage.
* @deprecated use MoveDownButton
*/
public class MoveDownLink extends Link {
private ListItem item;
Expand Down
Expand Up @@ -10,6 +10,7 @@
/**
* Similar to the Link created by ListView.moveUpLink(), but can be overridden
* for saving changes to persistent storage.
* @deprecated use MoveUpButton
*/
public class MoveUpLink extends Link {
private ListItem item;
Expand Down
Expand Up @@ -8,6 +8,7 @@
/**
* Similar to the Link created by ListView.removeLink(), but can be overridden
* for saving changes to persistent storage.
* @deprecated use RemoveButton
*/
public class RemoveLink extends Link {
private ListItem item;
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions pom.slip
Expand Up @@ -19,6 +19,7 @@ project(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance",xmlns="http://mave
packaging: "pom"
modules:
module: "databinder-models"
module: "databinder-components"
module: "databinder"
module: "databinder-dispatch"
module: "data-app"
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -18,6 +18,7 @@
<packaging>pom</packaging>
<modules>
<module>databinder-models</module>
<module>databinder-components</module>
<module>databinder</module>
<module>databinder-dispatch</module>
<module>data-app</module>
Expand Down

0 comments on commit 68c69d3

Please sign in to comment.