Skip to content
This repository has been archived by the owner on Jan 10, 2019. It is now read-only.

Fix typos in README.md #40

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Tapestry 5 Twitter Bootstrap Module
# Tapestry 5 Twitter Bootstrap Module

## List Of Contributors
- Barry Books as trsvax
Expand Down Expand Up @@ -55,7 +55,7 @@ Bootstap Mixins
- **FW**
- internal mixin for attaching framework chain to component

- **LoopEnviromentMixin*
- **LoopEnviromentMixin**
- add to Loop component to support paging

- **Pager**
Expand All @@ -65,7 +65,7 @@ Bootstap Mixins
- push new objects into the environment

- **Sortable**
- makes elements [Sortable]http://jqueryui.com/demos/sortable/)
- makes elements [Sortable](http://jqueryui.com/demos/sortable/)


##Using Bootstrap:
Expand Down
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,30 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
</plugins>
</build>

<repositories>
<repositories>
<!-- repositories for jquery-->
<repository>
<id>devlab722-repo</id>
<url>http://nexus.devlab722.net/nexus/content/repositories/releases
</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>

<repository>
<id>devlab722-snapshot-repo</id>
<url>http://nexus.devlab722.net/nexus/content/repositories/snapshots
</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>

<repository>
<id>sonatype-nexus</id>
<url>https://oss.sonatype.org/content/groups/public</url>
</repository>
</repositories>

<pluginRepositories>
Expand Down