Skip to content
Closed
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
59 changes: 58 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,65 @@
<packaging>pom</packaging>
<groupId>org.codice.ddf</groupId>
<version>2.25.0-SNAPSHOT</version>
<name>DDF :: UI :: Admin</name>
<name>DDF :: Admin-UI :: Parent</name>
<description>Distributed Data Framework (DDF) Admin UI</description>
<organization>
<name>Codice Foundation</name>
<url>http://codice.org</url>
</organization>
<licenses>
<license>
<name>GNU Lesser General Public v3</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<!-- default URL properties -->
<ddf.scm.connection.url />
<snapshots.repository.url />
<reports.repository.url />
</properties>
<scm>
<url>https://github.com/codice/ddf-admin-ui</url>
<connection>scm:git:https://github.com/codice/ddf-admin-ui.git</connection>
<developerConnection>scm:git:https://github.com/codice/ddf-admin-ui.git</developerConnection>
<tag>HEAD</tag>
</scm>
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>codice</id>
<name>Codice Repository</name>
<url>https://artifacts.codice.org/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>codice</id>
<name>Codice Repository</name>
<url>https://artifacts.codice.org/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
<modules>
<!-- currently keeping this in a separate directory/module for ACE -->
<module>ui</module>
</modules>
</project>
2 changes: 1 addition & 1 deletion ui/packages/admin-federation-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"backbone": "1.1.2",
"backbone-associations": "0.6.2",
"backbone.marionette": "2.4.7",
"jquery": "3.2.1"
"jquery": "3.5.0"
},
"alias": {
"marionette": "backbone.marionette"
Expand Down
2 changes: 1 addition & 1 deletion ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</parent>
<artifactId>ui</artifactId>
<groupId>org.codice.ddf</groupId>
<name>DDF :: UI</name>
<name>DDF :: UI :: Admin</name>
<packaging>bundle</packaging>
<properties>
<buildEnv>production</buildEnv>
Expand Down