Skip to content

Commit

Permalink
Create new empty tapx-json module
Browse files Browse the repository at this point in the history
  • Loading branch information
hlship committed Jul 15, 2011
1 parent 876b70a commit 11c8c92
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include "tapx-core", "tapx-kaptcha", "tapx-datefield", "tapx-plainmessage"
include "tapx-templating", "tapx-yui"
include "tapx-jms-core"
include "tapx-json", "tapx-jms-core"
11 changes: 11 additions & 0 deletions tapx-json/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description = "Utilities for converting arbitrary objects to native JSON values."

dependencies {
compile "org.apache.tapestry:tapestry-ioc:$tapestryVersion"
}

jar {
manifest {
attributes 'Tapestry-Module-Classes': 'com.howardlewisship.tapx.json.JSONModule'
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright 2011 Howard M. Lewis Ship
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.howardlewisship.tapx.json;

public class JSONModule {
}

0 comments on commit 11c8c92

Please sign in to comment.