Skip to content

Commit

Permalink
replace ip with localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
wildone committed Sep 6, 2019
1 parent 33e01ce commit ef1c6c0
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions aemdesign-aem-author/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>design.aem</groupId>
<artifactId>aemdesign-aem-core</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -17,7 +17,7 @@
<!-- ====================================================================== -->

<artifactId>aemdesign-aem-author</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<packaging>content-package</packaging>
<name>AEM Design - Core - AEM Author UI Updates</name>
<description>Updates to OOTB AEM</description>
Expand Down
4 changes: 2 additions & 2 deletions aemdesign-aem-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>design.aem</groupId>
<artifactId>aemdesign-aem-core</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -17,7 +17,7 @@
<!-- ====================================================================== -->

<artifactId>aemdesign-aem-common</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<packaging>content-package</packaging>
<name>AEM Design - Core - AEM Common</name>
<description>AEM Design package with all common components</description>
Expand Down
4 changes: 2 additions & 2 deletions aemdesign-aem-core-deploy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>design.aem</groupId>
<artifactId>aemdesign-aem-core</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -20,7 +20,7 @@
<packaging>content-package</packaging>
<name>AEM Design - Core - Deployment Package</name>
<description>AEM package for deploying all packages as one</description>
<version>2.0.430</version>
<version>2.0.447</version>
<url>${parent.url}</url>

<developers>
Expand Down
4 changes: 2 additions & 2 deletions aemdesign-aem-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>design.aem</groupId>
<artifactId>aemdesign-aem-core</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -17,7 +17,7 @@
<!-- ====================================================================== -->

<artifactId>aemdesign-aem-services</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<packaging>bundle</packaging>
<name>AEM Design - Core - AEM Services</name>
<description>Project for all AEM and OSGI Services</description>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>design.aem</groupId>
<artifactId>aemdesign-aem-core</artifactId>
<version>2.0.430</version>
<version>2.0.447</version>
<packaging>pom</packaging>

<name>AEM Design - Core Project</name>
Expand All @@ -25,14 +25,14 @@
<!-- P R O P E R T I E S -->
<!-- ====================================================================== -->
<properties>
<crx.host>192.168.27.2</crx.host>
<crx.host>localhost</crx.host>
<crx.port>4502</crx.port>
<crx.username>admin</crx.username>
<crx.password>admin</crx.password>
<crx.package.path>/etc/packages</crx.package.path>
<nexus.host>192.168.27.2</nexus.host>
<nexus.host>localhost</nexus.host>
<nexus.port>8081</nexus.port>
<publish.crx.host>192.168.27.2</publish.crx.host>
<publish.crx.host>localhost</publish.crx.host>
<publish.crx.port>4503</publish.crx.port>
<publish.crx.username>admin</publish.crx.username>
<publish.crx.password>admin</publish.crx.password>
Expand Down
10 changes: 5 additions & 5 deletions privateregistry.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<repositories>
<repository>
<id>privateregistry</id>
<url>http://192.168.27.2:8081/repository/maven-snapshots</url>
<url>http://localhost:8081/repository/maven-snapshots</url>
<releases>
<enabled>true</enabled>
</releases>
Expand All @@ -92,7 +92,7 @@
<pluginRepositories>
<pluginRepository>
<id>privateregistry</id>
<url>http://192.168.27.2:8081/repository/maven-snapshots</url>
<url>http://localhost:8081/repository/maven-snapshots</url>
<releases>
<enabled>true</enabled>
</releases>
Expand All @@ -108,17 +108,17 @@
<!--This sends everything else to /public -->
<id>aemdesign-mirror</id>
<mirrorOf>*</mirrorOf>
<url>http://192.168.27.2:8081/repository/maven-releases/</url>
<url>http://localhost:8081/repository/maven-releases/</url>
</mirror>
</mirrors>
<proxies>
<proxy>
<id>aemdesign-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>192.168.27.2:8081</host>
<host>localhost:8081</host>
<port>8081</port>
<nonProxyHosts>192.168.27.2,localhost,127.0.0.1</nonProxyHosts>
<nonProxyHosts>localhost,127.0.0.1</nonProxyHosts>
</proxy>
</proxies>
</settings>

0 comments on commit ef1c6c0

Please sign in to comment.