3rd Party Jars

Hi,

I am new to nexus, I have configured a new hosted repository called 3rd-Party-Jars and added it in the group.
I have uploaded a jar direct using the web ui but when I am adding that jar in dependencies I am not able to get the jar to local. Please help.

settings.xml

<settings>
  <mirrors>
    <mirror>
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://<hostip>:8081/repository/maven-group/</url>
    </mirror>
  </mirrors>
   <servers>

    <server>
      <id>nexus-snapshots</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
    <server>
      <id>nexus-releases</id>
      <username>admin</username>
      <password>adin123</password>
    </server>
  </servers>
  <profiles>
    <profile>
      <id>nexus</id>
      
      <repositories>
        <repository>
          <id>central</id>
          <url>http://central</url>
          <releases><enabled>true</enabled><updatePolicy>always</updatePolicy></releases>
          <snapshots><enabled>true</enabled><updatePolicy>always</updatePolicy></snapshots>
        </repository>
      </repositories>
     <pluginRepositories>
        <pluginRepository>
          <id>central</id>
          <url>http://central</url>
          <releases><enabled>true</enabled><updatePolicy>always</updatePolicy></releases>
          <snapshots><enabled>true</enabled><updatePolicy>always</updatePolicy></snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>
  <activeProfiles>
    <!--make the profile active all the time -->
    <activeProfile>nexus</activeProfile>
  </activeProfiles>
</settings>

pom.xml

<repositories>
		<repository>
			<id>maven-group</id>
			<url>http://<<hostip>>:8081/repository/maven-group/</url>
		</repository>
		
	</repositories>
	<distributionManagement>
		<snapshotRepository>
			<id>nexus-snapshots</id>
			<url>http://<hostip>:8081/repository/maven-snapshots/</url>
		</snapshotRepository>
		<repository>
			<id>nexus-releases</id>
			<url>http://<<hostip>>:8081/repository/maven-releases/</url>
		</repository>
	
	</distributionManagement>